OBJECT

QuizOption

link GraphQL Schema definition

1type QuizOption {
2
3# Description of the option.
4description: String!
5
6# Is the option correct or not.
7isCorrect: Boolean!
8
9# Is selected by the test taker or not.
10isSelected: Boolean
11
12}