Skip to content

Commit

Permalink
add getSuggestedFollowsByActor lex
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey committed Sep 5, 2023
1 parent f7186f0 commit 0478f06
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions lexicons/app/bsky/graph/getSuggestedFollowsByActor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"lexicon": 1,
"id": "app.bsky.graph.getSuggestedFollowsByActor",
"defs": {
"main": {
"type": "query",
"description": "Get suggested follows related to a given actor.",
"parameters": {
"type": "params",
"required": ["actor"],
"properties": {
"actor": {"type": "string", "format": "at-identifier"},
"limit": {"type": "integer", "minimum": 1, "maximum": 100, "default": 50},
"cursor": {"type": "string"}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["suggestions"],
"properties": {
"cursor": {"type": "string"},
"suggestions": {
"type": "array",
"items": {"type": "ref", "ref": "app.bsky.actor.defs#profileView"}
}
}
}
}
}
}
}

0 comments on commit 0478f06

Please sign in to comment.