Batch variant of getRelationship: check the follow relationship between `actor` and each of `others`.
Parameters
Output
Encoding
application/jsonrelationships
array
Required
No description available.
Errors
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": {
"type": "object",
"required": [
"relationships"
],
"properties": {
"relationships": {
"type": "array",
"items": {
"ref": "club.userstyles.alpha.defs#relationshipView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor",
"others"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier"
},
"others": {
"type": "array",
"items": {
"type": "string",
"format": "at-identifier"
},
"maxLength": 25
}
}
},
"description": "Batch variant of getRelationship: check the follow relationship between `actor` and each of `others`."
}