@zeepkist/graphql
    Preparing search index...

    Interface LevelItemAggregates

    interface LevelItemAggregates {
        keys: string[] | null;
        sum: LevelItemSumAggregates | null;
        distinctCount: LevelItemDistinctCountAggregates | null;
        min: LevelItemMinAggregates | null;
        max: LevelItemMaxAggregates | null;
        average: LevelItemAverageAggregates | null;
        stddevSample: LevelItemStddevSampleAggregates | null;
        stddevPopulation: LevelItemStddevPopulationAggregates | null;
        varianceSample: LevelItemVarianceSampleAggregates | null;
        variancePopulation: LevelItemVariancePopulationAggregates | null;
        __typename: "LevelItemAggregates";
    }
    Index

    Properties

    keys: string[] | null

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

    distinctCount: LevelItemDistinctCountAggregates | null

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

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

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

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

    stddevSample: LevelItemStddevSampleAggregates | null

    Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)

    stddevPopulation: LevelItemStddevPopulationAggregates | null

    Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)

    varianceSample: LevelItemVarianceSampleAggregates | null

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

    variancePopulation: LevelItemVariancePopulationAggregates | null

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

    __typename: "LevelItemAggregates"