Calculates the average from the data stored by the specified property. This aggregation uses an average mean calculation, and not an integral mean.

interface AvgAggregateFunctionV3 {
    avg: {
        property: string;
    };
}

Properties

Properties

avg: {
    property: string;
}