app.bsky.graph.getSuggestedFollowsByActor
Schema Diff
+5 -1
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "app.bsky.graph.getSuggestedFollowsByActor:output.recIdStr" }
- AddedEdge AddedEdge { src: "app.bsky.graph.getSuggestedFollowsByActor:output", tgt: "app.bsky.graph.getSuggestedFollowsByActor:output.recIdStr", kind: "prop", name: Some("recIdStr") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "app.bsky.graph.getSuggestedFollowsByActor:output.recIdStr" }
Additional Notes
- Non-breaking: AddedEdge { src: "app.bsky.graph.getSuggestedFollowsByActor:output", tgt: "app.bsky.graph.getSuggestedFollowsByActor:output.recIdStr", kind: "prop", name: Some("recIdStr") }
1
1
{
2
2
"id": "app.bsky.graph.getSuggestedFollowsByActor",
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
"suggestions"
11
11
],
12
12
"properties": {
13
13
"recId": {
14
14
"type": "integer",
15
+
"description": "DEPRECATED: use recIdStr instead."
16
+
},
17
+
"recIdStr": {
18
+
"type": "string",
15
19
"description": "Snowflake for this recommendation, use when submitting recommendation events."
16
20
},
17
21
"isFallback": {
18
22
"type": "boolean",
19
23
"default": false,
20
-
"description": "If true, response has fallen-back to generic results, and is not scoped using relativeToDid"
24
+
"description": "DEPRECATED, unused. Previously: if true, response has fallen-back to generic results, and is not scoped using relativeToDid"
21
25
},
22
26
"suggestions": {
23
27
"type": "array",
24
28
"items": {
25
29
"ref": "app.bsky.actor.defs#profileView",
26
30
"type": "ref"
27
31
}
28
32
}
29
33
}
30
34
},
31
35
"encoding": "application/json"
32
36
},
33
37
"parameters": {
34
38
"type": "params",
35
39
"required": [
36
40
"actor"
37
41
],
38
42
"properties": {
39
43
"actor": {
40
44
"type": "string",
41
45
"format": "at-identifier"
42
46
}
43
47
}
44
48
},
45
49
"description": "Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account."
46
50
}
47
51
},
48
52
"$type": "com.atproto.lexicon.schema",
49
53
"lexicon": 1
50
54
}