--- title: Storefront API now supports per-market Fulfillable Inventory - Shopify developer changelog description: Shopify’s developer changelog documents all changes to Shopify’s platform. Find the latest news and learn about new platform opportunities. source_url: html: https://shopify.dev/changelog/storefront-api-now-supports-per-market-fulfillable-inventory md: https://shopify.dev/changelog/storefront-api-now-supports-per-market-fulfillable-inventory.md --- [Back to Developer changelog](https://shopify.dev/changelog) April 1, 2024 Tags: * Storefront GraphQL API * 2024-04 # Storefront API now supports per-market Fulfillable Inventory As of Storefront API version 2024-04, you can use the `@inContext` directive to query `product` and `productVariant` fulfillable inventory for specified market country. The [Fulfillable Inventory](https://help.shopify.com/en/manual/shipping/setting-up-and-managing-your-shipping/fulfillable-inventory) feature must be enabled. ``` query Contextualized @inContext(country:CA){ product(id:"gid://shopify/Product/1" ) { availableForSale totalInventory variants(first:1) { edges { node { id availableForSale quantityAvailable currentlyNotInStock } } } } } ``` Learn more about Fulfillable Inventory on [Shopify help docs](https://help.shopify.com/en/manual/shipping/setting-up-and-managing-your-shipping/fulfillable-inventory).