OBJECT

VoteInPollPayload

Output from the vote on poll mutation.

link GraphQL Schema definition

1type VoteInPollPayload {
2
3# If present, there was an error with the request.
4error: VoteInPollError
5
6# The voter object returned by the vote operation.
7voter: PollVoter
8
9}