appBskyGraphGetListBlocks top-level constant
app.bsky.graph.getListBlocks
Implementation
const appBskyGraphGetListBlocks = <String, dynamic>{
"lexicon": 1,
"id": "app.bsky.graph.getListBlocks",
"defs": {
"main": {
"type": "query",
"description":
"Get mod lists that the requesting account (actor) is blocking. Requires auth.",
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"minimum": 1,
"maximum": 100
},
"cursor": {"type": "string"}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["lists"],
"properties": {
"cursor": {"type": "string"},
"lists": {
"type": "array",
"items": {"type": "ref", "ref": "app.bsky.graph.defs#listView"}
}
}
}
}
}
}
};