findJoinedRecords<JK extends SdbKey, JV extends SdbValue> method
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,
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,
);