The [`Catalog`](/docs/api/admin-graphql/unstable/interfaces/catalog) object connects product publications with buyer contexts. This resource enables apps to create product catalogs that can be targeted to specific markets or business-to-business (B2B) company locations. In the future, the `Catalog` object will be used to contextualize more aspects of merchandising, such as B2B quantity rules, volume pricing, and discounts. In this guide, you'll learn how to migrate your app to use catalogs instead of context rules. ## Requirements - You've built an app that creates and manages [price lists](/docs/api/admin-graphql/2023-01/objects/pricelist). - Your app is on API version 2023-01 or earlier, and uses the `PriceList.contextRule` field to determine a customer's price list eligibility, instead of the `Catalog` resource. ## Considerations - To be eligible to use market catalogs, merchants must be using [Shopify Markets](https://help.shopify.com/manual/markets). [Merchants on legacy country price lists](https://help.shopify.com/en/manual/markets/stores-excluded-from-markets) aren't eligible to use market catalogs. - To be eligible for B2B catalogs, merchants must be on the [Shopify Plus](https://www.shopify.com/plus) plan. ## Step 1: Update price list mutations Previously, price lists were associated with markets and countries through the `contextRule` field to provide international pricing. In API version 2023-04, an international price list needs to be associated with the catalog that's associated with a market or set of countries. Because of this change, you need to update the [`priceListCreate`](/docs/api/admin-graphql/unstable/mutations/pricelistcreate) and [`priceListUpdate`](/docs/api/admin-graphql/unstable/mutations/pricelistupdate) mutations to accept inputs for a catalog ID instead of the `contextRule` field. The following example shows how to use these mutations to associate a price list with a catalog: