@zeepkist/graphql
    Preparing search index...

    Interface SampledUpvotesConnection

    A connection to a list of SampledUpvote values.

    interface SampledUpvotesConnection {
        nodes: SampledUpvote[];
        edges: SampledUpvotesEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledUpvotesConnection";
    }
    Index

    Properties

    nodes: SampledUpvote[]

    A list of SampledUpvote objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledUpvotesConnection"