1
0
Fork 0
GPT4FREE/gpt4free/quora/graphql/MessageSetVoteMutation.graphql
2023-04-29 14:55:24 +05:30

8 lines
216 B
GraphQL

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