QueryExecuteNumAggregation<OBJ, T extends num> extension
Aggregation operations for number query builders.
- on
-
- QueryBuilder<
OBJ, T?, QAfterProperty>
- QueryBuilder<
Methods
-
average(
) → double -
Available on QueryBuilder<
Calculates the average of all values. This only works for numeric values.OBJ, T?, QAfterProperty> , provided by the QueryExecuteNumAggregation extension -
averageAsync(
) → Future< double> -
Available on QueryBuilder<
Calculates the average of all values. This only works for numeric values.OBJ, T?, QAfterProperty> , provided by the QueryExecuteNumAggregation extension -
max(
) → T? -
Available on QueryBuilder<
Finds the largest value matching the query.OBJ, T?, QAfterProperty> , provided by the QueryExecuteNumAggregation extension -
maxAsync(
) → Future< T?> -
Available on QueryBuilder<
Finds the largest value matching the query.OBJ, T?, QAfterProperty> , provided by the QueryExecuteNumAggregation extension -
min(
) → T? -
Available on QueryBuilder<
Finds the smallest value matching the query. Null values are considered smaller than all other values.OBJ, T?, QAfterProperty> , provided by the QueryExecuteNumAggregation extension -
minAsync(
) → Future< T?> -
Available on QueryBuilder<
Finds the smallest value matching the query. Null values are considered smaller than all other values.OBJ, T?, QAfterProperty> , provided by the QueryExecuteNumAggregation extension -
sum(
) → T -
Available on QueryBuilder<
Calculates the sum of all values. This only works for numeric values.OBJ, T?, QAfterProperty> , provided by the QueryExecuteNumAggregation extension -
sumAsync(
) → Future< T> -
Available on QueryBuilder<
Calculates the sum of all values. This only works for numeric values.OBJ, T?, QAfterProperty> , provided by the QueryExecuteNumAggregation extension