OBJECT

PollVoter

A voter taking part in a poll and associated information.

link GraphQL Schema definition

1type PollVoter {
2
3# The Choices this voter voted for.
4choices: [PollVoterChoice!]!
5
6# id of the voter in the poll.
7id: ID!
8
9# The Poll this voter voted in.
10poll: Poll
11
12# A breakdown of the different tokens used by the voter in the poll.
13tokens: PollTokenBreakdown!
14
15# The User object relating to this voter.
16user: User
17
18# A breakdown of the different votes this voter used in the poll.
19votes: PollVoteBreakdown!
20
21}