@zeepkist/graphql
    Preparing search index...

    Interface ZslLevelAggregates

    interface ZslLevelAggregates {
        keys: string[] | null;
        sum: ZslLevelSumAggregates | null;
        distinctCount: ZslLevelDistinctCountAggregates | null;
        min: ZslLevelMinAggregates | null;
        max: ZslLevelMaxAggregates | null;
        average: ZslLevelAverageAggregates | null;
        stddevSample: ZslLevelStddevSampleAggregates | null;
        stddevPopulation: ZslLevelStddevPopulationAggregates | null;
        varianceSample: ZslLevelVarianceSampleAggregates | null;
        variancePopulation: ZslLevelVariancePopulationAggregates | null;
        __typename: "ZslLevelAggregates";
    }
    Index

    Properties

    keys: string[] | null

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

    distinctCount: ZslLevelDistinctCountAggregates | 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: ZslLevelStddevSampleAggregates | null

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

    stddevPopulation: ZslLevelStddevPopulationAggregates | null

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

    varianceSample: ZslLevelVarianceSampleAggregates | null

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

    variancePopulation: ZslLevelVariancePopulationAggregates | null

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

    __typename: "ZslLevelAggregates"