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