appBskyGraphMuteActor top-level constant
app.bsky.graph.muteActor
Implementation
const appBskyGraphMuteActor = <String, dynamic>{
"lexicon": 1,
"id": "app.bsky.graph.muteActor",
"defs": {
"main": {
"type": "procedure",
"description":
"Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth.",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["actor"],
"properties": {
"actor": {"type": "string", "format": "at-identifier"}
}
}
}
}
}
};