@zeepkist/graphql
    Preparing search index...

    Interface RecordMediaAggregates

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

    Properties

    keys: string[] | null

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

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

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

    __typename: "RecordMediaAggregates"