appBskyGraphGetMutes function
Enumerates accounts that the requesting account (actor) currently has muted. Requires auth.
Implementation
Future<XRPCResponse<GraphGetMutesOutput>> appBskyGraphGetMutes({
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyGraphGetMutes,
headers: $headers,
parameters: {
...?$unknown,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const GraphGetMutesOutputConverter().fromJson,
);