Files
SillyTavern/poe_graphql/MessageSetVoteMutation.graphql
2023-04-03 22:10:58 +03:00

8 lines
216 B
GraphQL

mutation MessageSetVoteMutation($messageId: BigInt!, $voteType: VoteType!, $reason: String) {
messageSetVote(messageId: $messageId, voteType: $voteType, reason: $reason) {
message {
...MessageFragment
}
}
}