@zeepkist/graphql
    Preparing search index...

    Interface ZslRoundUsersByZslRoundResultManyToManyConnectionGenqlSelection

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

    interface ZslRoundUsersByZslRoundResultManyToManyConnectionGenqlSelection {
        nodes?: UserGenqlSelection;
        edges?: ZslRoundUsersByZslRoundResultManyToManyEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: UserAggregatesGenqlSelection;
        groupedAggregates?: UserAggregatesGenqlSelection & {
            __args: { groupBy: UserGroupBy[]; having?: null | UserHavingInput };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of User objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: UserAggregatesGenqlSelection & {
        __args: { groupBy: UserGroupBy[]; having?: null | UserHavingInput };
    }

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

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