@zeepkist/graphql
    Preparing search index...

    Interface UserPointsConnection

    A connection to a list of UserPoint values.

    interface UserPointsConnection {
        nodes: UserPoint[];
        edges: UserPointsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "UserPointsConnection";
    }
    Index

    Properties

    nodes: UserPoint[]

    A list of UserPoint objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "UserPointsConnection"