getCollection abstract method

Future<Map<String, Map>?> getCollection(
  1. String collectionPath, {
  2. List<DocumentQuery> filters,
  3. DocumentOrderBy? orderBy,
  4. int? limit,
})

Returns a map of documents records from the database.

  • collectionPath The path to the collection. e.g - "restaurants" - "restaurants/{restaurantId}/menuItems" - etc...
  • filters The filter that will be applied on each record of the collection.
  • limit The maximum number of documents to return. this integer must be greater than 0. Otherwise (if limit is not specified or limit is lower or equal to 0), all requested data will be returned.

Implementation

Future<Map<String, Map<dynamic, dynamic>>?> getCollection(
  String collectionPath, {
  List<DocumentQuery> filters,
  DocumentOrderBy? orderBy,
  int? limit,
});