@zeepkist/graphql
    Preparing search index...

    Interface LevelMetadataConnectionGenqlSelection

    A connection to a list of LevelMetadatum values.

    interface LevelMetadataConnectionGenqlSelection {
        nodes?: LevelMetadatumGenqlSelection;
        edges?: LevelMetadataEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: LevelMetadatumAggregatesGenqlSelection;
        groupedAggregates?: LevelMetadatumAggregatesGenqlSelection & {
            __args: {
                groupBy: LevelMetadataGroupBy[];
                having?: null | LevelMetadataHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of LevelMetadatum objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: LevelMetadatumAggregatesGenqlSelection & {
        __args: {
            groupBy: LevelMetadataGroupBy[];
            having?: null | LevelMetadataHavingInput;
        };
    }

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

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