@zeepkist/graphql
    Preparing search index...

    Interface VotesConnection

    A connection to a list of Vote values.

    interface VotesConnection {
        nodes: Vote[];
        edges: VotesEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "VotesConnection";
    }
    Index

    Properties

    nodes: Vote[]

    A list of Vote objects.

    edges: VotesEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "VotesConnection"