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

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

    groupedAggregates: WorldRecordGlobalAggregates[] | null

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

    __typename: "WorldRecordGlobalsConnection"