OBJECT

Order

Order of the Assignar platform.

link GraphQL Schema definition

  • type Order {
  • # The attachments of the order.
  • attachments: [OrderAttachment]
  • # Client for the order.
  • client: Client
  • # The comments on an order.
  • comments: String
  • # The contacts associated with this order
  • contacts: [Contact]
  • # Charge and pay items related to an order.
  • cost: OrderCost
  • # The user that created this order. This may be null for orders created before the
  • # created_by_id db migration.
  • created_by: User
  • # The date the order was created in UTC+0.
  • created_time: DateTime!
  • # The description of an order.
  • description: String
  • # Digital Dockets created against this order, if they were created via an
  • # allocation.
  • digital_dockets: [DigitalDocket]
  • # (DEPRECATED) Digital Docket Templates assigned to this order.
  • digital_docket_templates: [DigitalDocketTemplate] @deprecated( reason: "Docket templates are now linked on a client and task level." )
  • # The end date of the order
  • end_date: DateExpression!
  • # Form Results that have been submitted against this order.
  • form_results: [FormResult]
  • # Primary geolocation of the order
  • geolocation: Geolocation
  • # Secondary geolocation of the order
  • geolocation2: Geolocation
  • # The hire type of the order (wet or dry hire).
  • hire_type: OrderType
  • # Unique order ID.
  • id: Int!
  • # Active state of the order.
  • is_active: Boolean!
  • # Job number for an order.
  • job_number: String
  • # Order primary start location.
  • location: String
  • # Order secondary start location.
  • location2: String
  • # The user that last modified this order.
  • modified_by: User
  • # The time this order was last modified.
  • modified_time: DateTime
  • # The oder tasks associated with this order
  • order_tasks: [OrderTask]
  • # The owner of this order.
  • owner: User
  • # Project for the order.
  • project: Project
  • # Purchase order number on an order.
  • purchase_order_number: String
  • # The status of this order.
  • status: OrderStatus
  • # The start date of the order
  • start_date: DateExpression!
  • # The supplier of this order.
  • supplier: Supplier
  • # The categorization tags on the order.
  • tags: [Tag]
  • # The tasks associated with this order
  • tasks: [Task]
  • # The timesheets submitted against this order
  • timesheets: [Timesheet]
  • # The order template id of the template which initially created the order
  • order_template_id: Int
  • # The supervisors of the order
  • supervisors: [User] @deprecated( reason: "No longer supported." )
  • }