place.stream.graph.getFollowingUser

did:web:stream.place View official

Documentation

Get whether or not user A is following user B.

main query

Get whether or not user A is following user B.

Parameters

subjectDID string did Required

The DID of the user potentially being followed

userDID string did Required

The DID of the potentially-following user

Output

Encodingapplication/json
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
The DID of the user potentially being followed
The DID of the potentially-following user
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "properties": {
        "follow": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "userDID",
      "subjectDID"
    ],
    "properties": {
      "userDID": {
        "type": "string",
        "format": "did",
        "description": "The DID of the potentially-following user"
      },
      "subjectDID": {
        "type": "string",
        "format": "did",
        "description": "The DID of the user potentially being followed"
      }
    }
  },
  "description": "Get whether or not user A is following user B."
}

Lexicon Garden

@