games.gamesgamesgamesgames.graph.getLikes

lexicon.store View official

Documentation

Get the like count for a game and whether the authenticated user has liked it.

main query

Get the like count for a game and whether the authenticated user has liked it.

Parameters

uri string at-uri Required

AT URI of the game record.

Output

Encodingapplication/json
count 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.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
AT URI of the game record.
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."
}

Lexicon Garden

@