remove-comment-reaction
Remove a specific reaction from a comment in Liveblocks by specifying room, thread, comment IDs, and the user and emoji details for precise action.
Instructions
Remove a reaction from a Liveblocks comment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commentId | Yes | ||
data | Yes | ||
roomId | Yes | ||
threadId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"commentId": {
"type": "string"
},
"data": {
"additionalProperties": false,
"properties": {
"emoji": {
"type": "string"
},
"removedAt": {
"format": "date-time",
"type": "string"
},
"userId": {
"type": "string"
}
},
"required": [
"emoji",
"userId"
],
"type": "object"
},
"roomId": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"roomId",
"threadId",
"commentId",
"data"
],
"type": "object"
}