@zeepkist/graphql
    Preparing search index...

    Interface LevelRequestsConnectionGenqlSelection

    A connection to a list of LevelRequest values.

    interface LevelRequestsConnectionGenqlSelection {
        nodes?: LevelRequestGenqlSelection;
        edges?: LevelRequestsEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: LevelRequestAggregatesGenqlSelection;
        groupedAggregates?: LevelRequestAggregatesGenqlSelection & {
            __args: {
                groupBy: LevelRequestGroupBy[];
                having?: null | LevelRequestHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of LevelRequest objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: LevelRequestAggregatesGenqlSelection & {
        __args: {
            groupBy: LevelRequestGroupBy[];
            having?: null | LevelRequestHavingInput;
        };
    }

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

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