INPUT_OBJECT

EditQuizInput

link GraphQL Schema definition

1input EditQuizInput {
4
2# The display title of the question.
3title: String
7
5# Question description.
6description: String
10
8# The options for this quiz question.
9options: [QuizOptionInput!]
13
11# Whether the question allows selecting more than one option.
12multipleSelect: Boolean
14}

link Required by