OBJECT

TaskTemplate

link GraphQL Schema definition

1type TaskTemplate {
2
3id: ID!
4
5engineId: ID
6
7engine: Engine
8
9engineConfigId: ID
10
11engineConfig: EngineConfiguration
12
13executionLocationId: ID
14
15executionLocation: ExecutionLocation
16
17jobTemplateId: ID
18
19jobTemplate: JobTemplate
20
21payload: JSONData
22
23payloadString: String
24
25# Execution preferences for the current task
26executionPreferences: ExecutionPreferences
27
28# IO folders for the task.
29ioFolders: [IoFolder]
30
31parentTaskId: ID
32
33parentTask: Task
34
35childTaskIds: [ID!]!
36
37childTasks: TaskTemplateList!
38
39# This contains a list of URIs engine toolkit will send completed chunks.
40notificationUris: [String]
41
42}