queryLabels method
Find labels relevant to the provided AT-URI patterns. Public endpoint for moderation services, though may return different or additional results with auth.
Implementation
Future<XRPCResponse<LabelQueryLabelsOutput>> queryLabels({
required List<String> uriPatterns,
List<String>? sources,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoLabelQueryLabels(
uriPatterns: uriPatterns,
sources: sources,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);