app.bsky.graph.getSuggestedFollowsByActor
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
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
15
"description": "DEPRECATED: use recIdStr instead."
16
16
},
17
17
"recIdStr": {
18
18
"type": "string",
19
19
"description": "Snowflake for this recommendation, use when submitting recommendation events."
20
20
},
21
21
"isFallback": {
22
22
"type": "boolean",
23
23
"default": false,
24
-
"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"
25
25
},
26
26
"suggestions": {
27
27
"type": "array",
28
28
"items": {
29
29
"ref": "app.bsky.actor.defs#profileView",
30
30
"type": "ref"
31
31
}
32
32
}
33
33
}
34
34
},
35
35
"encoding": "application/json"
36
36
},
37
37
"parameters": {
38
38
"type": "params",
39
39
"required": [
40
40
"actor"
41
41
],
42
42
"properties": {
43
43
"actor": {
44
44
"type": "string",
45
45
"format": "at-identifier"
46
46
}
47
47
}
48
48
},
49
49
"description": "Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account."
50
50
}
51
51
},
52
52
"$type": "com.atproto.lexicon.schema",
53
53
"lexicon": 1
54
54
}