@zeepkist/graphql
    Preparing search index...

    Interface LevelsConnectionGenqlSelection

    A connection to a list of Level values.

    interface LevelsConnectionGenqlSelection {
        nodes?: LevelGenqlSelection;
        edges?: LevelsEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: LevelAggregatesGenqlSelection;
        groupedAggregates?: LevelAggregatesGenqlSelection & {
            __args: { groupBy: LevelGroupBy[]; having?: null | LevelHavingInput };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of Level objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: LevelAggregatesGenqlSelection & {
        __args: { groupBy: LevelGroupBy[]; having?: null | LevelHavingInput };
    }

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

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