ENUM

Order_WhereGroup_Fields

Where group options for Order. Matches when any field in the array is met

link GraphQL Schema definition

  • enum Order_WhereGroup_Fields {
  • # Job number for an order.
  • job_number
  • # Purchase order number on an order.
  • purchase_order_number
  • # Order primary start location.
  • location
  • # The description of an order.
  • description
  • # Unique order ID.
  • id
  • # The date the order was created in UTC+0.
  • created_time
  • # The unique client ID.
  • client_id
  • # The client's short name.
  • client_name
  • # Unique project ID.
  • project_id
  • # Project name.
  • project_name
  • # Unique supplier ID.
  • supplier_id
  • # The tag's display name.
  • supplier_name
  • # True to get only orders linked to a project, false to get orders with no
  • # projects
  • has_project
  • # True to get only orders linked to a project and that project is active, false
  • # otherwise
  • has_active_project
  • # Order status type. E.g. confirmed, pending etc.
  • status
  • # Order status id
  • status_id
  • # Start date to filter orders by
  • start_date
  • # End date to filter orders by
  • end_date
  • # Filters to supervisors that are assigned to the order's project
  • supervisor_id
  • # Owner user id to filter by.
  • owner_id
  • # Hire type to filter by.
  • hire_type
  • # Only show orders with these tags
  • tags_id
  • # Filters to orders who have allocations on a given date
  • has_allocations_on_date
  • # Filters to orders where any order task date is not fulfilled with correct number
  • # of allocations
  • is_incomplete
  • # Filters any orders with an unfulfilled task date in given range. An unfulfilled
  • # task date that has allocated workers < qty OR if task asset required - allocated
  • # assets < 1
  • unfulfilled_in_range
  • # `true` to show the active items, `false` otherwise. `null` to show both active &
  • # deactivated items. Defaults to `true`.
  • is_active
  • # Get orders which contains at least one task that matches the given ids
  • task_id
  • }