@zeepkist/graphql
    Preparing search index...

    Interface LevelRecordsByPersonalBestGlobalManyToManyConnection

    A connection to a list of Record values, with data from PersonalBestGlobal.

    interface LevelRecordsByPersonalBestGlobalManyToManyConnection {
        nodes: Record[];
        edges: LevelRecordsByPersonalBestGlobalManyToManyEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | RecordAggregates;
        groupedAggregates: null | RecordAggregates[];
        __typename: "LevelRecordsByPersonalBestGlobalManyToManyConnection";
    }
    Index

    Properties

    nodes: Record[]

    A list of Record objects.

    A list of edges which contains the Record, info from the PersonalBestGlobal, and the cursor to aid in pagination.

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | RecordAggregates

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

    groupedAggregates: null | RecordAggregates[]

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

    __typename: "LevelRecordsByPersonalBestGlobalManyToManyConnection"