Check the follow relationship between two actors: whether `actor` follows `other`, and whether `other` follows `actor` back.
Parameters
Output
Encoding
application/jsonErrors
ActorNotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "ActorNotFound"
}
],
"output": {
"schema": {
"ref": "club.userstyles.alpha.defs#relationshipView",
"type": "ref"
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor",
"other"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier"
},
"other": {
"type": "string",
"format": "at-identifier"
}
}
},
"description": "Check the follow relationship between two actors: whether `actor` follows `other`, and whether `other` follows `actor` back."
}