OBJECT

OrderTemplateTask

A order task with template details and task timing conditions

link GraphQL Schema definition

  • type OrderTemplateTask {
  • # The unique order template task ID.
  • id: Int!
  • # The order template associated with this order template task
  • order_template: OrderTemplate
  • # The task associated with this order template task
  • task: Task
  • # 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: [Form]
  • # 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
  • }