listRecords method

Future<XRPCResponse<RepoListRecordsOutput>> listRecords({
  1. required String repo,
  2. required String collection,
  3. int? limit,
  4. String? cursor,
  5. bool? reverse,
  6. Map<String, String>? $headers,
  7. Map<String, String>? $unknown,
})

List a range of records in a repository, matching a specific collection. Does not require auth.

Implementation

Future<XRPCResponse<RepoListRecordsOutput>> listRecords({
  required String repo,
  required String collection,
  int? limit,
  String? cursor,
  bool? reverse,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoRepoListRecords(
  repo: repo,
  collection: collection,
  limit: limit,
  cursor: cursor,
  reverse: reverse,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);