INPUT_OBJECT

OrderOrderTaskCreate

OrderTask added to an Order

link GraphQL Schema definition

  • input OrderOrderTaskCreate {
  • # The task associated with this order task
  • task: IdObject!
  • # List of shift dates to allocate to
  • dates: [String]!
  • # The amount of shifts available for order task.
  • quantity: Int!
  • # The forms for the order task
  • forms: [IdObject]
  • # The start time of the order task (legacy field)
  • start_time: String!
  • # The end time of the order task (legacy field)
  • end_time: String!
  • # Description of the task, to distinguish between same tasks on an order
  • description: String
  • # The work item associated with this order task
  • work_items: [IdObject]
  • }