@zeepkist/graphql
    Preparing search index...

    Interface UpvotesConnection

    A connection to a list of Upvote values.

    interface UpvotesConnection {
        nodes: Upvote[];
        edges: UpvotesEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "UpvotesConnection";
    }
    Index

    Properties

    nodes: Upvote[]

    A list of Upvote objects.

    edges: UpvotesEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "UpvotesConnection"