@zeepkist/graphql
    Preparing search index...

    Interface RecordAggregates

    interface RecordAggregates {
        keys: null | string[];
        sum: null | RecordSumAggregates;
        distinctCount: null | RecordDistinctCountAggregates;
        min: null | RecordMinAggregates;
        max: null | RecordMaxAggregates;
        average: null | RecordAverageAggregates;
        stddevSample: null | RecordStddevSampleAggregates;
        stddevPopulation: null | RecordStddevPopulationAggregates;
        varianceSample: null | RecordVarianceSampleAggregates;
        variancePopulation: null | RecordVariancePopulationAggregates;
        __typename: "RecordAggregates";
    }
    Index

    Properties

    keys: null | string[]

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

    distinctCount: null | RecordDistinctCountAggregates

    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)

    average: null | RecordAverageAggregates

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

    stddevSample: null | RecordStddevSampleAggregates

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

    stddevPopulation: null | RecordStddevPopulationAggregates

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

    varianceSample: null | RecordVarianceSampleAggregates

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

    variancePopulation: null | RecordVariancePopulationAggregates

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

    __typename: "RecordAggregates"