Returns true if there are objects that match this query.
true
This operation is faster than using count() > 0.
count() > 0
Future<bool> isNotEmpty() => aggregate<int>(AggregationOp.isEmpty).then((value) => value == 0);