INPUT_OBJECT

Asset_Exact

Exact match query arguments for Asset

link GraphQL Schema definition

  • input Asset_Exact {
  • # Select multiple Asset by ID.
  • id: [Int]
  • # The machines's display name.
  • name: String
  • # List of asset ids NOT to include
  • not_asset_id: [[Int]]
  • # Only show assets associated to these suppliers
  • supplier_ids: [Int]
  • # Only show assets with these tags
  • tags_id: [[Int]]
  • # `true` to show the active items, `false` otherwise. `null` to show both active &
  • # deactivated items. Defaults to `true`.
  • is_active: Boolean
  • # `true` to show the deleted items, `false` otherwise.
  • is_deleted: Boolean
  • # Matches assets that have overlap allocations matching the given dates
  • has_overlap_allocations: AssetHasOverlapAllocation
  • # Matches assets that have overlap allocations matching the given date time
  • # ranges.
  • has_asset_overlap_allocations_between_date_time_ranges: [HasAssetOverlapAllocationsBetweenDateTimeRange]
  • # Matches assets that have no overlap allocations matching the given date time
  • # ranges.
  • has_asset_no_overlap_allocations_between_date_time_ranges: [HasAssetNoOverlapAllocationsBetweenDateTimeRange]
  • # Matches any assets that have allocations matching the given criteria
  • has_allocations: AssetHasAllocation
  • }