@zeepkist/graphql
    Preparing search index...

    Interface LevelPointsHistoriesConnectionGenqlSelection

    A connection to a list of LevelPointsHistory values.

    interface LevelPointsHistoriesConnectionGenqlSelection {
        nodes?: LevelPointsHistoryGenqlSelection;
        edges?: LevelPointsHistoriesEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: LevelPointsHistoryAggregatesGenqlSelection;
        groupedAggregates?: LevelPointsHistoryAggregatesGenqlSelection & {
            __args: {
                groupBy: LevelPointsHistoryGroupBy[];
                having?: null | LevelPointsHistoryHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of LevelPointsHistory objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: LevelPointsHistoryAggregatesGenqlSelection & {
        __args: {
            groupBy: LevelPointsHistoryGroupBy[];
            having?: null | LevelPointsHistoryHavingInput;
        };
    }

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

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