community.gifthood.graph.getMutes

gifthood.community

Documentation

Enumerate the accounts muted by the authenticated viewer (their own mute list). Viewer-private: requires a session (AuthRequired logged-out). No actor parameter — only the caller's own list is accessible. Each row is the medium profileView (identity-only; no viewer object, since the mute relationship is trivially known). Unbounded and unordered this version; cursor is reserved for future pagination and is never emitted.

main query

Enumerate the accounts muted by the authenticated viewer (their own mute list). Viewer-private: requires a session (AuthRequired logged-out). No actor parameter — only the caller's own list is accessible. Each row is the medium profileView (identity-only; no viewer object, since the mute relationship is trivially known). Unbounded and unordered this version; cursor is reserved for future pagination and is never emitted.

Parameters

cursor string Optional

Reserved for future pagination; the full list is returned this version and no cursor is emitted.

Output

Encodingapplication/json
cursor string Optional

Reserved for future pagination; absent this version.

mutes array Required

The muted accounts, identity-only.

Errors

AuthRequired The caller is not authenticated; the mute list is viewer-private and requires a session.
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Reserved for future pagination; the full list is returned this version and no cursor is emitted.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthRequired",
      "description": "The caller is not authenticated; the mute list is viewer-private and requires a session."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "mutes"
      ],
      "properties": {
        "mutes": {
          "type": "array",
          "items": {
            "ref": "community.gifthood.actor.defs#profileView",
            "type": "ref"
          },
          "description": "The muted accounts, identity-only."
        },
        "cursor": {
          "type": "string",
          "description": "Reserved for future pagination; absent this version."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "cursor": {
        "type": "string",
        "description": "Reserved for future pagination; the full list is returned this version and no cursor is emitted."
      }
    }
  },
  "description": "Enumerate the accounts muted by the authenticated viewer (their own mute list). Viewer-private: requires a session (AuthRequired logged-out). No actor parameter — only the caller's own list is accessible. Each row is the medium profileView (identity-only; no viewer object, since the mute relationship is trivially known). Unbounded and unordered this version; cursor is reserved for future pagination and is never emitted."
}

Lexicon Garden

@