@zeepkist/graphql
    Preparing search index...

    Interface LevelPointAggregates

    interface LevelPointAggregates {
        keys: string[] | null;
        sum: LevelPointSumAggregates | null;
        distinctCount: LevelPointDistinctCountAggregates | null;
        min: LevelPointMinAggregates | null;
        max: LevelPointMaxAggregates | null;
        average: LevelPointAverageAggregates | null;
        stddevSample: LevelPointStddevSampleAggregates | null;
        stddevPopulation: LevelPointStddevPopulationAggregates | null;
        varianceSample: LevelPointVarianceSampleAggregates | null;
        variancePopulation: LevelPointVariancePopulationAggregates | null;
        __typename: "LevelPointAggregates";
    }
    Index

    Properties

    keys: string[] | null

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

    distinctCount: LevelPointDistinctCountAggregates | 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)

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

    stddevPopulation: LevelPointStddevPopulationAggregates | null

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

    varianceSample: LevelPointVarianceSampleAggregates | null

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

    variancePopulation: LevelPointVariancePopulationAggregates | null

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

    __typename: "LevelPointAggregates"