summaryrefslogtreecommitdiffstats
path: root/poe/graphql/MessageSetVoteMutation.graphql
blob: 76000df0eba23313fb10883d3ef1763c9e37674b (plain) (blame)
1
2
3
4
5
6
7
mutation MessageSetVoteMutation($messageId: BigInt!, $voteType: VoteType!, $reason: String) {
	messageSetVote(messageId: $messageId, voteType: $voteType, reason: $reason) {
		message {
			...MessageFragment
		}
	}
}