OBJECT
SingleEnvironmentTask
A question that is in the single-environment format
link GraphQL Schema definition
1 type SingleEnvironmentTask implements CommonTask { 2 3 # Unique identifier. 4 ID! : 5 6 # The display name of the question. 7 String! : 8 9 # The text of the question that will be shown to the user. 10 String! : 11 12 # The question type 13 GeneralType! : 14 15 # The question overview type 16 String! : 17 18 # The question mode 19 TaskMode! : 20 21 # The labels associated with this question. 22 String]! : [ 23 24 # Max score of the question. 25 Int! : 26 27 # The question levels of a progressive question 28 TaskLevel] : [ 29 30 # [*Internal use only*] 31 # The question sets associated with this question. 32 String]! : [ 33 34 }