get method

Future<GetResponse> get({
  1. List<String>? ids,
  2. Map<String, dynamic>? where,
  3. Map<String, dynamic>? whereDocument,
  4. int? limit,
  5. int? offset,
  6. List<Include> include = const [Include.documents, Include.metadatas],
})

Gets records from the collection.

Implementation

Future<GetResponse> get({
  List<String>? ids,
  Map<String, dynamic>? where,
  Map<String, dynamic>? whereDocument,
  int? limit,
  int? offset,
  List<Include> include = const [Include.documents, Include.metadatas],
}) {
  return _records.getRecords(
    ids: ids,
    where: where,
    whereDocument: whereDocument,
    limit: limit,
    offset: offset,
    include: include,
  );
}