OBJECT
DatabaseTask
A database task.
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 task type 10 GeneralType! : 11 12 # The task mode 13 TaskMode! : 14 15 # The labels associated with this task. 16 String]! : [ 17 18 # Max score of the task. 19 Int! : 20 21 # [*Internal use only*] 22 # The task sets associated with this task. 23 String]! : [ 24 25 DatabaseEnvironmentType : 26 27 }