INPUT_OBJECT

AssetHasAllocation

Criteria to match if asset has any allocations.

link GraphQL Schema definition

  • input AssetHasAllocation {
  • # Unique project ID.
  • project_id: Int
  • # The unique client ID.
  • client_id: Int
  • # Allocation status type. E.g. confirmed, pending etc.
  • status: [AllocationStatusTypes]
  • # Filter allocations starting on this date
  • day: DateTimeExpression
  • # Filter allocations starting on this date
  • week: DateTimeExpression
  • # Filter allocations starting on this date
  • month: DateTimeExpression
  • # Unique order ID.
  • not_order_id: Int
  • # Filter allocations that fall on these exact dates
  • dates: [DateTimeExpression]
  • # Allocations attached to an order with a given owner
  • order_owner_id: Int
  • # Allocations attached to an order task with a given task
  • task_id: Int
  • }