OBJECT
Task
A question that may be asked during an assessment.
link GraphQL Schema definition
1 type Task { 2 3 # Unique identifier. 4 ID! : 5 6 # The display name of the task. 7 String! : 8 9 # The text of the question that will be shown to the user. 10 String! : 11 12 # The task type 13 GeneralType! : 14 15 }