findJoinedRecords<JK extends SdbKey, JV extends SdbValue> method

Future<List<SdbRecordSnapshot<JK, JV>>> findJoinedRecords<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<JK, JV>>>
findJoinedRecords<JK extends SdbKey, JV extends SdbValue>(
  SdbClient client, {
  required SdbJoinTarget<JK, JV> target,
  String? joinKeyPath,
  SdbFindOptions<K>? options,
  SdbJoinFindOptions? joinOptions,
}) => _sourceAt(joinKeyPath).findJoinedRecords<JK, JV>(
  client,
  target: target,
  options: options,
  joinOptions: joinOptions,
);