diff options
Diffstat (limited to 'openai_rev/quora/graphql/MessageSetVoteMutation.graphql')
-rw-r--r-- | openai_rev/quora/graphql/MessageSetVoteMutation.graphql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openai_rev/quora/graphql/MessageSetVoteMutation.graphql b/openai_rev/quora/graphql/MessageSetVoteMutation.graphql new file mode 100644 index 00000000..76000df0 --- /dev/null +++ b/openai_rev/quora/graphql/MessageSetVoteMutation.graphql @@ -0,0 +1,7 @@ +mutation MessageSetVoteMutation($messageId: BigInt!, $voteType: VoteType!, $reason: String) { + messageSetVote(messageId: $messageId, voteType: $voteType, reason: $reason) { + message { + ...MessageFragment + } + } +} |