@zeepkist/graphql
    Preparing search index...

    Interface WorldRecordGlobalsConnection

    A connection to a list of WorldRecordGlobal values.

    interface WorldRecordGlobalsConnection {
        nodes: WorldRecordGlobal[];
        edges: WorldRecordGlobalsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | WorldRecordGlobalAggregates;
        groupedAggregates: null | WorldRecordGlobalAggregates[];
        __typename: "WorldRecordGlobalsConnection";
    }
    Index

    Properties

    A list of WorldRecordGlobal objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | WorldRecordGlobalAggregates

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

    groupedAggregates: null | WorldRecordGlobalAggregates[]

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

    __typename: "WorldRecordGlobalsConnection"