@zeepkist/graphql
    Preparing search index...

    Interface LevelItemsConnectionGenqlSelection

    A connection to a list of LevelItem values.

    interface LevelItemsConnectionGenqlSelection {
        nodes?: LevelItemGenqlSelection;
        edges?: LevelItemsEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: LevelItemAggregatesGenqlSelection;
        groupedAggregates?: LevelItemAggregatesGenqlSelection & {
            __args: {
                groupBy: LevelItemGroupBy[];
                having?: null | LevelItemHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of LevelItem objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: LevelItemAggregatesGenqlSelection & {
        __args: {
            groupBy: LevelItemGroupBy[];
            having?: null | LevelItemHavingInput;
        };
    }

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

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