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 String : 30 31 # Required permission: AllocationRule:read 32 # 33 # All elements are always returned 34 AllocationRule!]! : [ 35 36 # Required permission: StockChange:read 37 # 38 # Limit must be in range 1 - 200 39 # 40 # Arguments 41 # where: (self-explanatory) 42 # sort: (self-explanatory) 43 # limit: (self-explanatory) 44 # page: (self-explanatory) 45 StockChangeFilter, : [StockChangeSort!] = [id_DESC], : Int = 20, : Int = 1): [StockChange!]! ( : 46 47 # Required permission: Warehouse.stock:read 48 # 49 # Limit must be in range 1 - 200 50 # 51 # Arguments 52 # where: (self-explanatory) 53 # sort: (self-explanatory) 54 # limit: (self-explanatory) 55 # page: (self-explanatory) 56 StockFilter, : [StockSort!] = [productId_ASC, productVariantId_ASC, productSizeSort_ASC], : Int = 20, : Int = 1): [Stock!]! ( : 57 58 # Required permission: Warehouse.stockTotals:read 59 # 60 # Arguments 61 # where: (self-explanatory) 62 StockTotalsFilter): StockTotals! ( : 63 64 }
link Required by
- Account
- Allocation
- AllocationRule
- BrickAndMortar
- DirectToConsumerReturn
- EventTarget Contains object types, which are possible values of EventObjectType, with interfaces resolved to concrete types
- 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 > *from the Supplier Module **Caution: neither `stockOffset` from `ProductVariant`, nor `threshold` from `Warehouse` are included in the returned `freeToAllocate`. If your integration requires them for stock calculation, you can fetch these numbers and compare to the returned stock values.** [More information](https://support.centra.com/centra-sections/general/catalog/stock-view-explanations)
- StockChange
- StockChangeLine
- Supplier
- WarehouseAllocationPriority
- WarehouseCreatePayload
- WarehouseDelivery
- WarehouseDeliveryLine
- WarehouseUpdatePayload
- WholesaleReturn