{ "id": "app.bsky.graph.getFollows", "defs": { "main": { "type": "query", "output": { "schema": { "type": "object", "required": [ "subject", "follows" ], "properties": { "cursor": { "type": "string" }, "follows": { "type": "array", "items": { "ref": "app.bsky.actor.defs#profileView", "type": "ref" } }, "subject": { "ref": "app.bsky.actor.defs#profileView", "type": "ref" } } }, "encoding": "application/json" }, "parameters": { "type": "params", "required": [ "actor" ], "properties": { "sort": { "type": "string", "description": "Sort order of the returned follows.", "knownValues": [ "latest", "top" ] }, "actor": { "type": "string", "format": "at-identifier" }, "limit": { "type": "integer", "default": 50, "maximum": 100, "minimum": 1 }, "cursor": { "type": "string" } } }, "description": "Enumerates accounts which a specified account (actor) follows." } }, "$type": "com.atproto.lexicon.schema", "lexicon": 1 }