app.bsky.graph.getMutes
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.bsky.graph.getMutes",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"mutes"
11
11
],
12
12
"properties": {
13
13
"mutes": {
14
14
"type": "array",
15
15
"items": {
16
16
"ref": "app.bsky.actor.defs#profileView",
17
17
"type": "ref"
18
18
}
19
19
},
20
20
"cursor": {
21
21
"type": "string"
22
22
}
23
23
}
24
24
},
25
25
"encoding": "application/json"
26
26
},
27
27
"parameters": {
28
28
"type": "params",
29
29
"properties": {
30
30
"limit": {
31
31
"type": "integer",
32
32
"default": 50,
33
33
"maximum": 100,
34
34
"minimum": 1
35
35
},
36
36
"cursor": {
37
37
"type": "string"
38
38
}
39
39
}
40
40
},
41
-
"description": "Enumerates accounts that the requesting account (actor) currently has muted. Requires auth."
41
+
"description": "Enumerates accounts that the requesting account (actor) currently has fully muted. Mutes scoped to specific kinds of content (only reposts, only quote posts) are not included. Responses may contain more items than the requested limit. Requires auth."
42
42
}
43
43
},
44
44
"$type": "com.atproto.lexicon.schema",
45
45
"lexicon": 1
46
46
}