QueryStringAggregation<T extends String?> extension

Aggregation operations for string queries.

on

Methods

max() → T?

Available on DatabaseUniverseQuery<T?>, provided by the QueryStringAggregation extension

Finds the largest value matching the query.
maxAsync() Future<T?>

Available on DatabaseUniverseQuery<T?>, provided by the QueryStringAggregation extension

Finds the largest value matching the query.
min() → T?

Available on DatabaseUniverseQuery<T?>, provided by the QueryStringAggregation extension

Finds the smallest value matching the query. Null values are considered smaller than all other values.
minAsync() Future<T?>

Available on DatabaseUniverseQuery<T?>, provided by the QueryStringAggregation extension

Finds the smallest value matching the query. Null values are considered smaller than all other values.