INPUT_OBJECT

OrderTemplateOrderTemplateTaskUpdate

A order task with template details and task timing conditions

link GraphQL Schema definition

  • input OrderTemplateOrderTemplateTaskUpdate {
  • # The task associated with this order template task
  • task: IdObject!
  • # A description of the task, to distinguish between each task in the order
  • # template
  • task_description: String
  • # The quantity of workers for the order task
  • task_quantity: Int!
  • # The start time of the order task
  • task_start_time: String!
  • # The end time of the order task
  • task_end_time: String!
  • # The forms of the order task
  • task_forms: [IdObject]
  • # The offset for the order task. This field is used to calculate the start date of
  • # a task.
  • task_offset: Int!
  • # The duration for the order task. This field is used to calculate the end date of
  • # a task.
  • task_duration: Int!
  • }