INPUT_OBJECT

OrderTaskCreate

A single order task

link GraphQL Schema definition

  • input OrderTaskCreate {
  • # Description of the task, to distinguish between same tasks on an order
  • description: String
  • # The order associated with this order task
  • order: IdObject!
  • # The task associated with this order task
  • task: IdObject!
  • # List of shift dates to allocate to
  • dates: [String]!
  • # The quantity of workers for the 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!
  • # The work item associated with this order task
  • work_items: [IdObject]
  • }