@zeepkist/graphql
    Preparing search index...

    Interface UserPointsHistoriesConnection

    A connection to a list of UserPointsHistory values.

    interface UserPointsHistoriesConnection {
        nodes: UserPointsHistory[];
        edges: UserPointsHistoriesEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: UserPointsHistoryAggregates | null;
        groupedAggregates: UserPointsHistoryAggregates[] | null;
        __typename: "UserPointsHistoriesConnection";
    }
    Index

    Properties

    A list of UserPointsHistory objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: UserPointsHistoryAggregates | null

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

    groupedAggregates: UserPointsHistoryAggregates[] | null

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

    __typename: "UserPointsHistoriesConnection"