@zeepkist/graphql
    Preparing search index...

    Interface LevelAggregates

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

    Properties

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

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

    distinctCount: null | LevelDistinctCountAggregates

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

    min: null | LevelMinAggregates

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

    max: null | LevelMaxAggregates

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

    average: null | LevelAverageAggregates

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

    stddevSample: null | LevelStddevSampleAggregates

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

    stddevPopulation: null | LevelStddevPopulationAggregates

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

    varianceSample: null | LevelVarianceSampleAggregates

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

    variancePopulation: null | LevelVariancePopulationAggregates

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

    __typename: "LevelAggregates"