@zeepkist/graphql
    Preparing search index...

    Interface RecordMediaAggregates

    interface RecordMediaAggregates {
        keys: null | string[];
        sum: null | RecordMediaSumAggregates;
        distinctCount: null | RecordMediaDistinctCountAggregates;
        min: null | RecordMediaMinAggregates;
        max: null | RecordMediaMaxAggregates;
        average: null | RecordMediaAverageAggregates;
        stddevSample: null | RecordMediaStddevSampleAggregates;
        stddevPopulation: null | RecordMediaStddevPopulationAggregates;
        varianceSample: null | RecordMediaVarianceSampleAggregates;
        variancePopulation: null | RecordMediaVariancePopulationAggregates;
        __typename: "RecordMediaAggregates";
    }
    Index

    Properties

    keys: null | string[]

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

    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: null | RecordMediaStddevPopulationAggregates

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

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

    variancePopulation: null | RecordMediaVariancePopulationAggregates

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

    __typename: "RecordMediaAggregates"