OBJECT
PollChoice
A choice in a poll that users can vote for.
link GraphQL Schema definition
1 type PollChoice { 2 3 # ID of choice. 4 : ID! 5 6 # The authenticated user's relationship with this choice. 7 : PollChoiceSelfEdge! 8 9 # The title of the choice. 10 : String! 11 12 # A breakdown of the different tokens used for this choice. 13 : PollTokenBreakdown! 14 15 # Total number of unique voters that have voted for this choice. 16 : Int! 17 18 # A list of voters for this choice. 19 # Only the poll's ownerID and their mods/editors can search for this. 20 ( 21 : Int, 22 : Cursor, 23 : PollVoterConnectionSort, 24 : PollVoterConnectionSortDirection 25 ): PollChoiceVoterConnection 26 27 # A breakdown of the different votes cast for this choice. 28 : PollVoteBreakdown! 29 30 }