INPUT_OBJECT

VoteInPollInput

Inputs for voting on a poll.

link GraphQL Schema definition

1input VoteInPollInput {
4
2# The id of the choice the vote is casted on in the poll.
3choiceID: ID!
7
5# The id of the poll that is being voted in.
6pollID: ID!
10
8# The tokens used for this vote.
9tokens: PollVoteTokensInput
13
11# The user id of the voter.
12userID: ID!
16
14# The unique id for this vote action.
15voteID: ID!
17}