@zeepkist/graphql
    Preparing search index...

    Interface PersonalBestGlobalsConnection

    A connection to a list of PersonalBestGlobal values.

    interface PersonalBestGlobalsConnection {
        nodes: PersonalBestGlobal[];
        edges: PersonalBestGlobalsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: PersonalBestGlobalAggregates | null;
        groupedAggregates: PersonalBestGlobalAggregates[] | null;
        __typename: "PersonalBestGlobalsConnection";
    }
    Index

    Properties

    A list of PersonalBestGlobal objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: PersonalBestGlobalAggregates | null

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

    groupedAggregates: PersonalBestGlobalAggregates[] | null

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

    __typename: "PersonalBestGlobalsConnection"