app.didpic.feed.getCommentReplies
Schema Diff
+2 -3
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.feed.getCommentReplies",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "CommentNotFound"
9
9
}
10
10
],
11
11
"output": {
12
12
"schema": {
13
13
"type": "object",
14
14
"required": [
15
15
"replies"
16
16
],
17
17
"properties": {
18
18
"cursor": {
19
19
"type": "string"
20
20
},
21
21
"replies": {
22
22
"type": "array",
23
23
"items": {
24
24
"ref": "app.didpic.feed.defs#commentView",
25
25
"type": "ref"
26
26
}
27
27
}
28
28
}
29
29
},
30
30
"encoding": "application/json"
31
31
},
32
32
"parameters": {
33
33
"type": "params",
34
34
"required": [
35
35
"uri"
36
36
],
37
37
"properties": {
38
38
"uri": {
39
39
"type": "string",
40
-
"format": "at-uri",
41
-
"description": "The comment whose replies to fetch."
40
+
"format": "at-uri"
42
41
},
43
42
"limit": {
44
43
"type": "integer",
45
44
"default": 30,
46
45
"maximum": 100,
47
46
"minimum": 1
48
47
},
49
48
"cursor": {
50
49
"type": "string"
51
50
}
52
51
}
53
52
},
54
-
"description": "Replies to a single comment, oldest first. Used to expand the inline preview surfaced by feed.getPostThread once `commentView.replies.length` is less than `replyCount`."
53
+
"description": "Replies to a comment."
55
54
}
56
55
},
57
56
"$type": "com.atproto.lexicon.schema",
58
57
"lexicon": 1
59
58
}