@zeepkist/graphql
    Preparing search index...

    Interface ZslLevelResultsConnection

    A connection to a list of ZslLevelResult values.

    interface ZslLevelResultsConnection {
        nodes: ZslLevelResult[];
        edges: ZslLevelResultsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | ZslLevelResultAggregates;
        groupedAggregates: null | ZslLevelResultAggregates[];
        __typename: "ZslLevelResultsConnection";
    }
    Index

    Properties

    A list of ZslLevelResult objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | ZslLevelResultAggregates

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

    groupedAggregates: null | ZslLevelResultAggregates[]

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

    __typename: "ZslLevelResultsConnection"