removeReaction
Description
No description
Response
Returns a Action
Arguments
Name | Description |
---|---|
participantId - String | |
postId - ID! | |
reaction - String! |
Mutation
mutation removeReaction(
$participantId: String,
$postId: ID!,
$reaction: String!
) {
removeReaction(
participantId: $participantId,
postId: $postId,
reaction: $reaction
) {
status
}
}
Variables
{
"participantId": "xyz789",
"postId": 4,
"reaction": "abc123"
}
Response
{
"data": {
"removeReaction": {
"status": "failed"
}
}
}