@zeepkist/graphql
    Preparing search index...

    Interface RecordAggregates

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

    Properties

    keys: string[] | null

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

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

    average: RecordAverageAggregates | null

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

    stddevSample: RecordStddevSampleAggregates | null

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

    stddevPopulation: RecordStddevPopulationAggregates | null

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

    varianceSample: RecordVarianceSampleAggregates | null

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

    variancePopulation: RecordVariancePopulationAggregates | null

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

    __typename: "RecordAggregates"