@zeepkist/graphql
    Preparing search index...

    Interface LevelZslRoundsByZslLevelManyToManyConnectionGenqlSelection

    A connection to a list of ZslRound values, with data from ZslLevel.

    interface LevelZslRoundsByZslLevelManyToManyConnectionGenqlSelection {
        nodes?: ZslRoundGenqlSelection;
        edges?: LevelZslRoundsByZslLevelManyToManyEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: ZslRoundAggregatesGenqlSelection;
        groupedAggregates?: ZslRoundAggregatesGenqlSelection & {
            __args: {
                groupBy: ZslRoundGroupBy[];
                having?: null | ZslRoundHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of ZslRound objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: ZslRoundAggregatesGenqlSelection & {
        __args: {
            groupBy: ZslRoundGroupBy[];
            having?: null | ZslRoundHavingInput;
        };
    }

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

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