QueryStringAggregation<T extends String?> extension
Aggregation operations for string queries.
- on
Methods
-
max(
) → T? -
Available on DatabaseUniverseQuery<
Finds the largest value matching the query.T?> , provided by the QueryStringAggregation extension -
maxAsync(
) → Future< T?> -
Available on DatabaseUniverseQuery<
Finds the largest value matching the query.T?> , provided by the QueryStringAggregation extension -
min(
) → T? -
Available on DatabaseUniverseQuery<
Finds the smallest value matching the query. Null values are considered smaller than all other values.T?> , provided by the QueryStringAggregation extension -
minAsync(
) → Future< T?> -
Available on DatabaseUniverseQuery<
Finds the smallest value matching the query. Null values are considered smaller than all other values.T?> , provided by the QueryStringAggregation extension