INPUT_OBJECT

OrderCreate

Order of the Assignar platform.

link GraphQL Schema definition

  • input OrderCreate {
  • # The attachments of the order.
  • attachments: [AttachmentInput]
  • # Client for the order.
  • client: IdObject!
  • # The comments on an order.
  • comments: String
  • # The contacts associated with this order
  • contacts: [IdObject]
  • # The description of an order.
  • description: String
  • # The end date of the order
  • end_date: DateExpression!
  • # Primary geolocation of the order
  • geolocation: GeolocationInput
  • # Secondary geolocation of the order
  • geolocation2: GeolocationInput
  • # The hire type of the order (wet or dry hire).
  • hire_type: IdObject
  • # Job number for an order.
  • job_number: String
  • # Order primary start location.
  • location: String
  • # Order secondary start location.
  • location2: String
  • # The owner of this order.
  • owner: IdObject!
  • # Project for the order.
  • project: IdObject
  • # Purchase order number on an order.
  • purchase_order_number: String
  • # The status of this order.
  • status: IdObject!
  • # The start date of the order
  • start_date: DateExpression!
  • # The supplier of this order.
  • supplier: IdObject
  • # The categorization tags on the order.
  • tags: [IdObject]
  • # The order template id of the template which initially created the order
  • order_template_id: Int
  • }