OBJECT

ExecutionPreferences

link GraphQL Schema definition

1type ExecutionPreferences {
2
3# Optional. Maximum retries for the task.
4maxRetries: Int
5
6# Optional. Defines if the task can be porcessed in parallel. Default value is
7# false.
8parallelProcessing: Boolean
9
10# Optional. Maximum number of engine instances on the task.
11maxEngines: Int
12
13# Optional. Defines if the oarent task should be completed before starting.
14# Default value is false.
15parentCompleteBeforeStarting: Boolean
16
17# Optional. Due date for the task.
18dueDateTime: DateTime
19
20# Optional. Priority of the task. Default value is 0.
21priority: Int
22
23}