OBJECT
Warehouse
link GraphQL Schema definition
1 type Warehouse { 2 Int! : 3 4 String! : 5 6 Status! : 7 8 WarehouseStockOwnership! : 9 10 WarehouseAllocationPolicy! : 11 12 WarehouseStockMaster! : 13 14 Boolean! : 15 16 Boolean! : 17 18 Int : 19 20 # Required permission: BrickAndMortar:read 21 BrickAndMortar : 22 23 # Required permission: none 24 Country : 25 26 # Required permission: none 27 CountryState : 28 29 # Required permission: AllocationRule:read 30 # 31 # All elements are always returned 32 AllocationRule!]! : [ 33 34 # Required permission: WarehouseDelivery:read 35 # 36 # Limit must be in range 1 - 200 37 # 38 # Arguments 39 # where: (self-explanatory) 40 # sort: (self-explanatory) 41 # limit: (self-explanatory) 42 # page: (self-explanatory) 43 ( 44 WarehouseDeliveryFilter, : 45 WarehouseDeliverySort!] = [id_DESC], : [ 46 Int = 20, : 47 Int = 1 : 48 ): [WarehouseDelivery!]! 49 50 # Required permission: Warehouse.stock:read 51 # 52 # Limit must be in range 1 - 200 53 # 54 # Arguments 55 # where: (self-explanatory) 56 # sort: (self-explanatory) 57 # limit: (self-explanatory) 58 # page: (self-explanatory) 59 StockFilter, : [StockSort!] = [productId_ASC, productVariantId_ASC, productSizeSort_ASC], : Int = 20, : Int = 1): [Stock!]! ( : 60 61 # Required permission: Warehouse.stockTotals:read 62 # 63 # Arguments 64 # where: (self-explanatory) 65 StockTotalsFilter): StockTotals! ( : 66 67 }
link Required by
- Account
- Allocation
- AllocationRule
- BrickAndMortar
- GeographyAllocationPrioritySet
- PurchaseOrder
- PurchaseOrderDelivery
- Query The main queries are here, click to expand
- Return
- Stock Quantities in Stock have the following meaning > physical ordered incoming* > / \ / \ / \ > freeToAllocate allocated demand - linked* unlinked* > `demand` is decreased by `linked` quantity when supplier module is enabled > > `unshipped` = all ordered items which are not in a "sent" shipment > > `availableNow` = `freeToAllocate` - `demand` > > `available`* = `availableNow` + `unlinked`* > > `on delivery`* = number of incoming items from supplier orders, > which are present in supplier deliveries > *with Supplier Module [More information](https://support.centra.com/centra-sections/general/catalog/stock-view-explanations)
- Supplier
- WarehouseAllocationPriority
- WarehouseDelivery
- WarehouseDeliveryLine