OBJECT
PollVoter
A voter taking part in a poll and associated information.
link GraphQL Schema definition
1 type PollVoter { 2 3 # The Choices this voter voted for. 4 : [PollVoterChoice!]! 5 6 # id of the voter in the poll. 7 : ID! 8 9 # The Poll this voter voted in. 10 : Poll 11 12 # A breakdown of the different tokens used by the voter in the poll. 13 : PollTokenBreakdown! 14 15 # The User object relating to this voter. 16 : User 17 18 # A breakdown of the different votes this voter used in the poll. 19 : PollVoteBreakdown! 20 21 }
link Required by
- PollChoiceSelfEdgeA connection between poll choice and the authenticated user.
- PollSelfEdgeA connection between a poll and the authenticated user.
- PollVoterConnectionEdgeA page entry, that contains the PollVoter item and a cursor to return from the query to allow pagination.
- VoteInPollByChoiceIndexPayloadOutput from the vote on poll by choice index mutation.
- VoteInPollPayloadOutput from the vote on poll mutation.