note
Release notes for version 1.4.1 were skipped due to an internal deployment. Changes from version 1.4.1 are included in these notes.
💎 Changed
Inventory
Retrieve product warehouse stats
Added warehouseStats
to the product
query, which will return aggregated stock quantities for all of a product's variants.
query {
products(last: 15) {
edges {
node {
id
name
warehousesStats {
warehouseId
quantity
quantityAllocated
quantityAvailable
}
}
}
}
}
🪲 Fixed
Orders
Fixed a permission check issue with the retrieving the identification
field through a seller query.
Catalog
Fixed an issue where you could not query products for a seller.