@zeepkist/graphql
    Preparing search index...

    Interface LevelAggregates

    interface LevelAggregates {
        keys: string[] | null;
        sum: LevelSumAggregates | null;
        distinctCount: LevelDistinctCountAggregates | null;
        min: LevelMinAggregates | null;
        max: LevelMaxAggregates | null;
        average: LevelAverageAggregates | null;
        stddevSample: LevelStddevSampleAggregates | null;
        stddevPopulation: LevelStddevPopulationAggregates | null;
        varianceSample: LevelVarianceSampleAggregates | null;
        variancePopulation: LevelVariancePopulationAggregates | null;
        __typename: "LevelAggregates";
    }
    Index

    Properties

    keys: string[] | null
    sum: LevelSumAggregates | null

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

    distinctCount: LevelDistinctCountAggregates | null

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

    min: LevelMinAggregates | null

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

    max: LevelMaxAggregates | null

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

    average: LevelAverageAggregates | null

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

    stddevSample: LevelStddevSampleAggregates | null

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

    stddevPopulation: LevelStddevPopulationAggregates | null

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

    varianceSample: LevelVarianceSampleAggregates | null

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

    variancePopulation: LevelVariancePopulationAggregates | null

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

    __typename: "LevelAggregates"