OBJECT
Task
Represents a single engine task
link GraphQL Schema definition
1 type Task { 2 3 # The task ID 4 : ID! 5 6 : String 7 8 : String 9 10 # Date and time the task was created 11 : DateTime 12 13 # Date and time the task was last modified 14 : DateTime 15 16 : String 17 18 : String 19 20 # Date and time the task was queued for execution. 21 : DateTime 22 23 # Date and time the task completed. 24 : DateTime 25 26 # Date and time task execution started 27 : DateTime 28 29 # The task status. See TaskStatus enum for details. 30 : TaskStatus 31 32 # Optional order in which the task should run, relative to other tasks 33 # in the job that contains it. 34 : Int 35 36 # Whether or not the task is run on the clone of a TDO 37 : Boolean 38 39 # Application ID that owns the task 40 : String 41 42 # The ID of the TemporalDataObject the task 43 # was created for. 44 : ID 45 46 # The TemporalDataObject the task was created for. 47 : TemporalDataObject 48 49 # ID of the engine for the task. 50 : ID 51 52 # The engine for the task 53 : Engine 54 55 # The ID of the job that contains this task 56 : ID 57 58 # The job that contains this task. 59 : Job 60 61 # ID of the engine build used for this task. 62 : ID 63 64 # The engine build used for this task 65 : Build 66 67 # The source asset for this task, if there is one. 68 : Asset 69 70 # The ID of the source asset for this task, if there is one. 71 : ID 72 73 : Int 74 75 : BigInt 76 77 : String 78 79 # The incoming task payload, in JSON format 80 : JSONData 81 82 # The task output, in JSON format. 83 : JSONData 84 85 # The incoming task payload, in String format. 86 : String 87 88 # The task output, in String format. 89 : String 90 91 # The log file produced during task execution 92 : TaskLog 93 94 # For backwards compatibility only 95 : JSONData 96 97 # For backwards compatibility only 98 : JSONData 99 100 # True if this task was created as a test task 101 : Boolean 102 103 : ID 104 105 : Task 106 107 : [ID!] 108 109 : [Task!] 110 111 : [TaskWarning] 112 113 # A standby task that will execute if this one fails. 114 : Task 115 116 # The task that this task is a standby for. If the task 117 # identified in this field fails, the current task will execute. 118 : Task 119 120 # Contains metadata used by the platform run-time system to execute 121 # the task. This field is accessible only to platform components. 122 : JSONData 123 124 # Failure reason code. This will be set only if the task final status 125 # was `failed`. 126 : TaskFailureReason 127 128 # Failure message from the engine. This will be set only if the task final 129 # status was `failed` and `failureReason` is set. 130 : String 131 132 # Execution preferences for the current task 133 : ExecutionPreferences 134 135 : [IoFolder] 136 137 # This contains a list of URIs engine toolkit will send completed chunks. 138 : [String] 139 140 }
link Required by
- AddTasksToJobsResponse
- AssetSourceDataA structure containing metadata about the source engine and task for an asset.
- EngineRunDescribes engine run on a TDO with
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.
- TaskRepresents a single engine task
- TaskList
- TaskTemplate
- TDOSourceDataDescribes source information about a TDO. That is, the components and processes that produced it. Each field may or may not have a value, depending on how the TDO was created.