OBJECT
TaskTemplate
link GraphQL Schema definition
1 type TaskTemplate { 2 3 : ID! 4 5 : ID 6 7 : Engine 8 9 : ID 10 11 : EngineConfiguration 12 13 : ID 14 15 : ExecutionLocation 16 17 : ID 18 19 : JobTemplate 20 21 : JSONData 22 23 : String 24 25 # Execution preferences for the current task 26 : ExecutionPreferences 27 28 # IO folders for the task. 29 : [IoFolder] 30 31 : ID 32 33 : Task 34 35 : [ID!]! 36 37 : TaskTemplateList! 38 39 # This contains a list of URIs engine toolkit will send completed chunks. 40 : [String] 41 42 }