OBJECT
Job
link GraphQL Schema definition
1 type Job { 2 3 # ID of the job 4 : ID! 5 6 # User-provided job name 7 : String 8 9 # Optional job description 10 : String 11 12 : DateTime 13 14 : DateTime 15 16 : String 17 18 : String 19 20 # ID of the target object for the job, such as a container or Recording 21 : ID 22 23 # Source asset ID 24 : ID 25 26 # Overall job status, as computed from the statuses of its component tasks 27 : TaskStatus 28 29 # Tasks the job has or will execute 30 # 31 # Arguments 32 # status: Specify a list of job status strings to filter by 33 # status 34 # offset: Provide an offset to skip to a certain element in the 35 # result, for paging. 36 # limit: Maximum number of results to retrieve in this query 37 # id: Specify an ID to retrieve a single specific task 38 # targetId: Specify a list of IDs to filter by task target ID 39 ( 40 : [TaskStatus!], 41 : Int, 42 : Int, 43 : ID, 44 : [ID], 45 : Boolean 46 ): TaskList 47 48 # Application the job ran under 49 : ID 50 51 # Target TemporalDataObject 52 : TemporalDataObject 53 54 # ID of the cluster where this job will be executed 55 : ID 56 57 : JSONData 58 59 : [Route] 60 61 # This contains a list of URIs engine toolkit will send completed chunks. 62 : [String] 63 64 # Arguments 65 # actor: Optional. If specified, returned the audits created by 66 # that user 67 # action: Optional. If specified, returned the specificed action 68 # audits 69 (: Int, : Int, : ID, : JobAction): JobActionAuditList 70 71 }
link Required by
- JobList
- 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
- TDOBatchJobActionResult