@zeepkist/graphql
    Preparing search index...

    Interface LevelUsersByVoteManyToManyConnection

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

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

    Properties

    nodes: User[]

    A list of User objects.

    A list of edges which contains the User, info from the Vote, 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: "LevelUsersByVoteManyToManyConnection"