INPUT_OBJECT
CreatePollInput
Inputs for creating a new poll.
link GraphQL Schema definition
1 input CreatePollInput { 4 2 # The cost in bits for casting a vote. 3 : Int 7 5 # Denotes if votes can be cast with bits. 6 : Boolean 10 8 # Choices that can be voted for in the poll. 9 : [CreatePollChoiceInput!]! 13 11 # The cost in Community Points for casting a vote. 12 : Int 16 14 # Duration of the poll in seconds. 15 : Int! 19 17 # Denotes if votes can be cast with Community Points. 18 : Boolean 22 20 # Denotes if the poll allows voting for multiple options. 21 : Boolean 25 23 # Id of the channel this poll is owned by. 24 : ID! 29 26 # Denotes if subscribers receives bonus votes. 27 # Deprecated: Subscriber multipliers are no longer supported. 28 : Boolean 33 30 # Denotes if the poll is only open to subscribers. 31 # Deprecated: Subscriber-only polls are no longer supported. 32 : Boolean 36 34 # Title of the poll. 35 : String! 37 }