@zeepkist/graphql
    Preparing search index...

    Interface LevelUsersByVoteManyToManyEdgeGenqlSelection

    A User edge in the connection, with data from Vote.

    interface LevelUsersByVoteManyToManyEdgeGenqlSelection {
        cursor?: number | boolean;
        node?: UserGenqlSelection;
        votes?: VotesConnectionGenqlSelection & {
            __args?: {
                first?: number | null;
                last?: number | null;
                offset?: number | null;
                before?: any;
                after?: any;
                orderBy?: VotesOrderBy[] | null;
                condition?: VoteCondition | null;
                filter?: VoteFilter | null;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    cursor?: number | boolean

    A cursor for use in pagination.

    The User at the end of the edge.

    votes?: VotesConnectionGenqlSelection & {
        __args?: {
            first?: number | null;
            last?: number | null;
            offset?: number | null;
            before?: any;
            after?: any;
            orderBy?: VotesOrderBy[] | null;
            condition?: VoteCondition | null;
            filter?: VoteFilter | null;
        };
    }

    Reads and enables pagination through a set of Vote.

    __typename?: number | boolean
    __scalar?: number | boolean