INPUT_OBJECT

CreateQuizInput

link GraphQL Schema definition

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

link Required by