OBJECT

PollVoterChoice

A choice a voter made taking part in a poll.

link GraphQL Schema definition

1type PollVoterChoice {
2
3# The id of the PollVoterChoice.
4id: ID!
5
6# The poll choice.
7pollChoice: PollChoice
8
9# A breakdown of the different tokens used by the voter.
10tokens: PollTokenBreakdown!
11
12# A breakdown of the different votes this voter used.
13votes: PollVoteBreakdown!
14
15}