@zeepkist/graphql
    Preparing search index...

    Interface ZslPointsStructuresConnection

    A connection to a list of ZslPointsStructure values.

    interface ZslPointsStructuresConnection {
        nodes: ZslPointsStructure[];
        edges: ZslPointsStructuresEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | ZslPointsStructureAggregates;
        groupedAggregates: null | ZslPointsStructureAggregates[];
        __typename: "ZslPointsStructuresConnection";
    }
    Index

    Properties

    A list of ZslPointsStructure objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | ZslPointsStructureAggregates

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

    groupedAggregates: null | ZslPointsStructureAggregates[]

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

    __typename: "ZslPointsStructuresConnection"