@zeepkist/graphql
    Preparing search index...

    Interface LevelsConnection

    A connection to a list of Level values.

    interface LevelsConnection {
        nodes: Level[];
        edges: LevelsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | LevelAggregates;
        groupedAggregates: null | LevelAggregates[];
        __typename: "LevelsConnection";
    }
    Index

    Properties

    nodes: Level[]

    A list of Level objects.

    edges: LevelsEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | LevelAggregates

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

    groupedAggregates: null | LevelAggregates[]

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

    __typename: "LevelsConnection"