chatgpt-plugin/utils/poe/graphql/MessageSetVoteMutation.graphql
2023-04-15 21:00:34 +08:00

7 lines
216 B
GraphQL

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