findRecordKeys method

Future<List<SdbRecordKey<K, V>>> findRecordKeys({
  1. SdbBoundaries<K>? boundaries,
  2. SdbFilter? filter,
  3. int? offset,
  4. int? limit,
  5. bool? descending,
  6. SdbFindOptions<K>? options,
})

Find record keys.

Implementation

Future<List<SdbRecordKey<K, V>>> findRecordKeys({
  SdbBoundaries<K>? boundaries,

  /// Optional filter, performed in memory
  SdbFilter? filter,
  int? offset,
  int? limit,

  /// Optional descending order
  bool? descending,

  /// New API, supercedes the other parameters
  SdbFindOptions<K>? options,
}) {
  options = sdbFindOptionsMerge(
    boundaries: boundaries,
    options,
    limit: limit,
    offset: offset,
    descending: descending,
    filter: filter,
  );
  return _impl.findRecordKeysImpl(options: options);
}