INPUT_OBJECT
CreateQuizInput
link GraphQL Schema definition
1 input CreateQuizInput { 4 2 # Unique question name. 3 : String! 7 5 # The display title of the question. 6 : String 10 8 # Question description. 9 : String! 13 11 # The options for this quiz question. 12 : [QuizOptionInput!]! 16 14 # Whether the question allows selecting more than one option. 15 : Boolean! 17 }