OBJECT
QuizSolution
Solution submitted to a quiz question.
link GraphQL Schema definition
1 type QuizSolution implements TaskSolution { 2 3 : ID! 4 5 # The options of the question. 6 : [QuizOption]! 7 8 # The options that test taker submitted as an answer. 9 : [String]! 10 11 }
link Required by
This element is not required by anyone