@zeepkist/graphql
    Preparing search index...

    Interface FavouriteAggregates

    interface FavouriteAggregates {
        keys: string[] | null;
        sum: FavouriteSumAggregates | null;
        distinctCount: FavouriteDistinctCountAggregates | null;
        min: FavouriteMinAggregates | null;
        max: FavouriteMaxAggregates | null;
        average: FavouriteAverageAggregates | null;
        stddevSample: FavouriteStddevSampleAggregates | null;
        stddevPopulation: FavouriteStddevPopulationAggregates | null;
        varianceSample: FavouriteVarianceSampleAggregates | null;
        variancePopulation: FavouriteVariancePopulationAggregates | null;
        __typename: "FavouriteAggregates";
    }
    Index

    Properties

    keys: string[] | null

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

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

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

    stddevSample: FavouriteStddevSampleAggregates | null

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

    stddevPopulation: FavouriteStddevPopulationAggregates | null

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

    varianceSample: FavouriteVarianceSampleAggregates | null

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

    variancePopulation: FavouriteVariancePopulationAggregates | null

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

    __typename: "FavouriteAggregates"