OBJECT
DatabaseTask
A database question.
link GraphQL Schema definition
1 type DatabaseTask implements CommonTask { 2 3 # Unique identifier. 4 ID! : 5 6 # The display name of the task. 7 String! : 8 9 # The question type 10 GeneralType! : 11 12 # The question overview type 13 String! : 14 15 # The question mode 16 TaskMode! : 17 18 # The labels associated with this question. 19 String]! : [ 20 21 # Max score of the question. 22 Int! : 23 24 # [*Internal use only*] 25 # The question sets associated with this question. 26 String]! : [ 27 28 DatabaseEnvironmentType : 29 30 }