@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;
        __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.

    __typename: "UserPointsHistoriesConnection"