@zeepkist/graphql
    Preparing search index...

    Interface ZslPointsStructuresConnectionGenqlSelection

    A connection to a list of ZslPointsStructure values.

    interface ZslPointsStructuresConnectionGenqlSelection {
        nodes?: ZslPointsStructureGenqlSelection;
        edges?: ZslPointsStructuresEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: ZslPointsStructureAggregatesGenqlSelection;
        groupedAggregates?: ZslPointsStructureAggregatesGenqlSelection & {
            __args: {
                groupBy: ZslPointsStructureGroupBy[];
                having?: null | ZslPointsStructureHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of ZslPointsStructure objects.

    A list of edges which contains the ZslPointsStructure and cursor to aid in pagination.

    Information to aid in pagination.

    totalCount?: number | boolean

    The count of all ZslPointsStructure you could get from the connection.

    Aggregates across the matching connection (ignoring before/after/first/last/offset)

    groupedAggregates?: ZslPointsStructureAggregatesGenqlSelection & {
        __args: {
            groupBy: ZslPointsStructureGroupBy[];
            having?: null | ZslPointsStructureHavingInput;
        };
    }

    Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)

    __typename?: number | boolean
    __scalar?: number | boolean