query abstract method

Future<List<T>> query(
  1. DatumQuery query, {
  2. String? userId,
})

Executes a one-time query against the remote data source.

This method should be implemented by adapters to translate a DatumQuery into a native query for the underlying service (e.g., a REST API call).

Implementation

Future<List<T>> query(DatumQuery query, {String? userId});