app.bsky.graph.muteActor
Creates a mute relationship for the specified account. If a mute already exists for the account, it is updated in place: the stored scope is replaced with the scope in this request. Mutes are private in Bluesky. Requires auth.
- class atproto_client.models.app.bsky.graph.mute_actor.Data
Bases:
DataModelBaseInput data model for
app.bsky.graph.muteActor.- field actor: AtIdentifier [Required]
Actor.
- class atproto_client.models.app.bsky.graph.mute_actor.DataDict
Bases:
TypedDict- actor: AtIdentifier
Actor.
- only_quoteposts: NotRequired[bool | None]
Restrict the mute to the account’s quote posts. See onlyReposts.
- only_reposts: NotRequired[bool | None]
Restrict the mute to the account’s reposts. When any ‘only’ scope is set, just the scoped content is muted; when none are set, the account is fully muted. Repeat calls replace the stored scope rather than adding to it.