QueryAsync<T> extension
Asynchronous operations for queries.
- on
Methods
-
countAsync(
) → Future< int> -
Available on DatabaseUniverseQuery<
Count how many objects match the query.T> , provided by the QueryAsync extension -
findAllAsync(
{int? offset, int? limit}) → Future< List< T> > -
Available on DatabaseUniverseQuery<
Find all objects that match this query.T> , provided by the QueryAsync extension -
findFirstAsync(
{int? offset}) → Future< T?> -
Available on DatabaseUniverseQuery<
Find the first object that matches this query orT> , provided by the QueryAsync extensionnull
if no object matches. -
isEmptyAsync(
) → Future< bool> -
Available on DatabaseUniverseQuery<
YieldsT> , provided by the QueryAsync extensiontrue
if there are no objects that match the query.