findJoinRecords<JK extends SdbKey, JV extends SdbValue> method

Future<List<SdbRecordSnapshot<K, V>>> findJoinRecords<JK extends SdbKey, JV extends SdbValue>(
  1. SdbClient client, {
  2. required SdbJoinTarget<JK, JV> target,
  3. String? joinKeyPath,
  4. SdbFindOptions<K>? options,
  5. SdbJoinFindOptions? joinOptions,
})

Implementation

Future<List<SdbRecordSnapshot<K, V>>>
findJoinRecords<JK extends SdbKey, JV extends SdbValue>(
  SdbClient client, {
  required SdbJoinTarget<JK, JV> target,
  String? joinKeyPath,
  SdbFindOptions<K>? options,
  SdbJoinFindOptions? joinOptions,
}) => _sourceAt(joinKeyPath).findJoinRecords<JK, JV>(
  client,
  target: target,
  options: options,
  joinOptions: joinOptions,
);