INPUT_OBJECT

ProjectHasOrder

Get projects where an order matches ALL the given field filters

link GraphQL Schema definition

  • input ProjectHasOrder {
  • # order is active
  • is_active: Boolean
  • # order hire type
  • hire_type: OrderTypes
  • # order status ids
  • status_id: [Int]
  • # order with owner ids
  • owner_id: [Int]
  • # order with owner ids
  • supplier_id: [Int]
  • # order with owner ids
  • order_tags: [Int]
  • # order that have the given task ids
  • task_id: [Int]
  • # order that have a start_date less than or equal to given date, useful for range
  • # intersection
  • start_date_lte: DateExpression
  • # order that have end_date greater than or equal to given date, useful for range
  • # intersection
  • end_date_gte: DateExpression
  • # Filters any orders with an unfulfilled task date less than or equal to given
  • # date. An unfulfilled task date that has allocated workers < qty OR if task asset
  • # required - allocated assets < 1
  • unfulfilled_in_date_lte: DateExpression
  • # Filters any orders with an unfulfilled task date greater than or equal to given
  • # date. An unfulfilled task date that has allocated workers < qty OR if task asset
  • # required - allocated assets < 1
  • unfulfilled_in_date_gte: DateExpression
  • }