OBJECT

QuizSolution

Solution submitted to a quiz question.

link GraphQL Schema definition

1type QuizSolution implements TaskSolution {
2
3id: ID!
4
5# The options of the question.
6options: [QuizOption]!
7
8# The options that test taker submitted as an answer.
9answer: [String]!
10
11}

link Required by

This element is not required by anyone