@zeepkist/graphql
    Preparing search index...

    Interface PersonalBestGlobalsConnectionGenqlSelection

    A connection to a list of PersonalBestGlobal values.

    interface PersonalBestGlobalsConnectionGenqlSelection {
        nodes?: PersonalBestGlobalGenqlSelection;
        edges?: PersonalBestGlobalsEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: PersonalBestGlobalAggregatesGenqlSelection;
        groupedAggregates?: PersonalBestGlobalAggregatesGenqlSelection & {
            __args: {
                groupBy: PersonalBestGlobalGroupBy[];
                having?: null | PersonalBestGlobalHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of PersonalBestGlobal objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: PersonalBestGlobalAggregatesGenqlSelection & {
        __args: {
            groupBy: PersonalBestGlobalGroupBy[];
            having?: null | PersonalBestGlobalHavingInput;
        };
    }

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

    __typename?: number | boolean
    __scalar?: number | boolean