WarehouseAction

(ENUM)

set of string constants representing actions in warehouse

link GraphQL Schema definition

  • enum WarehouseAction {
  • # subtract item from warehouse - item has been removed from warehouse
  • subtract
  • # block item - item is temporarily reserved/blocked for specific order
  • block
  • # unblock item
  • unblock
  • # add item to warehouse
  • add
  • }