@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: ZslLevelAggregates | null;
        groupedAggregates: ZslLevelAggregates[] | null;
        __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: ZslLevelAggregates | null

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

    groupedAggregates: ZslLevelAggregates[] | null

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

    __typename: "ZslLevelsConnection"