@zeepkist/graphql
    Preparing search index...

    Interface LevelUsersByUpvoteManyToManyConnection

    A connection to a list of User values, with data from Upvote.

    interface LevelUsersByUpvoteManyToManyConnection {
        nodes: User[];
        edges: LevelUsersByUpvoteManyToManyEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "LevelUsersByUpvoteManyToManyConnection";
    }
    Index

    Properties

    nodes: User[]

    A list of User objects.

    A list of edges which contains the User, info from the Upvote, and the cursor to aid in pagination.

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "LevelUsersByUpvoteManyToManyConnection"