Get the like count for a game and whether the authenticated user has liked it.
Parameters
Output
Encoding
application/jsoncount
integer
Required
Total number of likes on this game.
liked
boolean
Required
Whether the authenticated user has liked this game.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"count",
"liked"
],
"properties": {
"count": {
"type": "integer",
"description": "Total number of likes on this game."
},
"liked": {
"type": "boolean",
"description": "Whether the authenticated user has liked this game."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the game record."
}
}
},
"description": "Get the like count for a game and whether the authenticated user has liked it."
}