@zeepkist/graphql
    Preparing search index...

    Interface UserAggregates

    interface UserAggregates {
        keys: string[] | null;
        sum: UserSumAggregates | null;
        distinctCount: UserDistinctCountAggregates | null;
        min: UserMinAggregates | null;
        max: UserMaxAggregates | null;
        average: UserAverageAggregates | null;
        stddevSample: UserStddevSampleAggregates | null;
        stddevPopulation: UserStddevPopulationAggregates | null;
        varianceSample: UserVarianceSampleAggregates | null;
        variancePopulation: UserVariancePopulationAggregates | null;
        __typename: "UserAggregates";
    }
    Index

    Properties

    keys: string[] | null
    sum: UserSumAggregates | null

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

    distinctCount: UserDistinctCountAggregates | null

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

    min: UserMinAggregates | null

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

    max: UserMaxAggregates | null

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

    average: UserAverageAggregates | null

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

    stddevSample: UserStddevSampleAggregates | null

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

    stddevPopulation: UserStddevPopulationAggregates | null

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

    varianceSample: UserVarianceSampleAggregates | null

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

    variancePopulation: UserVariancePopulationAggregates | null

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

    __typename: "UserAggregates"