@zeepkist/graphql
    Preparing search index...

    Interface ZslLevelsConnection

    A connection to a list of ZslLevel values.

    interface ZslLevelsConnection {
        nodes: ZslLevel[];
        edges: ZslLevelsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | ZslLevelAggregates;
        groupedAggregates: null | ZslLevelAggregates[];
        __typename: "ZslLevelsConnection";
    }
    Index

    Properties

    nodes: ZslLevel[]

    A list of ZslLevel objects.

    edges: ZslLevelsEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | ZslLevelAggregates

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

    groupedAggregates: null | ZslLevelAggregates[]

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

    __typename: "ZslLevelsConnection"