@zeepkist/graphql
    Preparing search index...

    Interface LevelMetadataConnection

    A connection to a list of LevelMetadatum values.

    interface LevelMetadataConnection {
        nodes: LevelMetadatum[];
        edges: LevelMetadataEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | LevelMetadatumAggregates;
        groupedAggregates: null | LevelMetadatumAggregates[];
        __typename: "LevelMetadataConnection";
    }
    Index

    Properties

    A list of LevelMetadatum objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | LevelMetadatumAggregates

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

    groupedAggregates: null | LevelMetadatumAggregates[]

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

    __typename: "LevelMetadataConnection"