chat.bsky.convo.getMessages
Schema Diff
+8 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 4 non-breaking changes.
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "chat.bsky.convo.getMessages:output.relatedProfiles" }
- AddedVertex AddedVertex { vertex_id: "chat.bsky.convo.getMessages:output.relatedProfiles:items" }
- AddedEdge AddedEdge { src: "chat.bsky.convo.getMessages:output", tgt: "chat.bsky.convo.getMessages:output.relatedProfiles", kind: "prop", name: Some("relatedProfiles") }
- AddedEdge AddedEdge { src: "chat.bsky.convo.getMessages:output.relatedProfiles", tgt: "chat.bsky.convo.getMessages:output.relatedProfiles:items", kind: "items", name: None }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "chat.bsky.convo.getMessages:output.relatedProfiles" }AddedVertex { vertex_id: "chat.bsky.convo.getMessages:output.relatedProfiles:items" }
Additional Notes
- Non-breaking: AddedEdge { src: "chat.bsky.convo.getMessages:output", tgt: "chat.bsky.convo.getMessages:output.relatedProfiles", kind: "prop", name: Some("relatedProfiles") }
- Non-breaking: AddedEdge { src: "chat.bsky.convo.getMessages:output.relatedProfiles", tgt: "chat.bsky.convo.getMessages:output.relatedProfiles:items", kind: "items", name: None }
1
1
{
2
2
"id": "chat.bsky.convo.getMessages",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "InvalidConvo"
9
9
}
10
10
],
11
11
"output": {
12
12
"schema": {
13
13
"type": "object",
14
14
"required": [
15
15
"messages"
16
16
],
17
17
"properties": {
18
18
"cursor": {
19
19
"type": "string"
20
20
},
21
21
"messages": {
22
22
"type": "array",
23
23
"items": {
24
24
"refs": [
25
25
"chat.bsky.convo.defs#messageView",
26
26
"chat.bsky.convo.defs#deletedMessageView",
27
27
"chat.bsky.convo.defs#systemMessageView"
28
28
],
29
29
"type": "union"
30
30
}
31
+
},
32
+
"relatedProfiles": {
33
+
"type": "array",
34
+
"items": {
35
+
"ref": "chat.bsky.actor.defs#profileViewBasic",
36
+
"type": "ref"
37
+
},
38
+
"description": "Set of all members who authored or reacted to the returned messages. Members referred to by system messages are also included."
31
39
}
32
40
}
33
41
},
34
42
"encoding": "application/json"
35
43
},
36
44
"parameters": {
37
45
"type": "params",
38
46
"required": [
39
47
"convoId"
40
48
],
41
49
"properties": {
42
50
"limit": {
43
51
"type": "integer",
44
52
"default": 50,
45
53
"maximum": 100,
46
54
"minimum": 1
47
55
},
48
56
"cursor": {
49
57
"type": "string"
50
58
},
51
59
"convoId": {
52
60
"type": "string"
53
61
}
54
62
}
55
63
},
56
64
"description": "Returns a page of messages from a conversation."
57
65
}
58
66
},
59
67
"$type": "com.atproto.lexicon.schema",
60
68
"lexicon": 1
61
69
}