@zeepkist/graphql
    Preparing search index...

    Interface UserPointsHistoriesConnectionGenqlSelection

    A connection to a list of UserPointsHistory values.

    interface UserPointsHistoriesConnectionGenqlSelection {
        nodes?: UserPointsHistoryGenqlSelection;
        edges?: UserPointsHistoriesEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: UserPointsHistoryAggregatesGenqlSelection;
        groupedAggregates?: UserPointsHistoryAggregatesGenqlSelection & {
            __args: {
                groupBy: UserPointsHistoryGroupBy[];
                having?: null | UserPointsHistoryHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of UserPointsHistory objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: UserPointsHistoryAggregatesGenqlSelection & {
        __args: {
            groupBy: UserPointsHistoryGroupBy[];
            having?: null | UserPointsHistoryHavingInput;
        };
    }

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

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