@zeepkist/graphql
    Preparing search index...

    Interface VotesConnectionGenqlSelection

    A connection to a list of Vote values.

    interface VotesConnectionGenqlSelection {
        nodes?: VoteGenqlSelection;
        edges?: VotesEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: VoteAggregatesGenqlSelection;
        groupedAggregates?: VoteAggregatesGenqlSelection & {
            __args: { groupBy: VoteGroupBy[]; having?: null | VoteHavingInput };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of Vote objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

    Aggregates across the matching connection (ignoring before/after/first/last/offset)

    groupedAggregates?: VoteAggregatesGenqlSelection & {
        __args: { groupBy: VoteGroupBy[]; having?: null | VoteHavingInput };
    }

    Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)

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