OBJECT
PollVoterChoice
A choice a voter made taking part in a poll.
link GraphQL Schema definition
1 type PollVoterChoice { 2 3 # The id of the PollVoterChoice. 4 : ID! 5 6 # The poll choice. 7 : PollChoice 8 9 # A breakdown of the different tokens used by the voter. 10 : PollTokenBreakdown! 11 12 # A breakdown of the different votes this voter used. 13 : PollVoteBreakdown! 14 15 }