ItemMovementBlockedBy

ItemMovementBlockedBy Type

Enum defining the reasons why an item movement might be blocked from execution.

Values

Value
Description

RecalledProducts

Movement blocked due to recalled products

ExpiredProducts

Movement blocked due to expired products

MislabelledGoods

Movement blocked due to mislabeled goods

RegulatoryHold

Movement blocked due to regulatory hold

AwaitingDocumentation

Movement blocked awaiting documentation

InventoryDiscrepancies

Movement blocked due to inventory discrepancies

HazardousMaterials

Movement blocked due to hazardous materials

CounterfeitGoods

Movement blocked due to counterfeit goods

SeasonalGoods

Movement blocked due to seasonal goods restrictions

Usage Example

query {
  itemMovements(
    where: { blockedBy: HazardousMaterials }
  ) {
    edges {
      node {
        id
        quantity
        item {
          sku
        }
        blockedBy
      }
    }
  }
}

Last updated

Was this helpful?