My clients products come from two suppliers - one can supply worldwide, one to only one country - I have generated a file which shows WD for world and AU for one country - how do I use GraphQL to publish/unpublish to these marketplaces (and does it have to be at product level, or can we do it for variants?) My file which the API will access contains the product ID and Variant ID.
Hey @Aidan_Heritage - hopefully I’m understanding correctly here, but if you’re looking at adding/removing certain products or variants from Markets you should be able to do this using the MarketUpdate mutation: marketUpdate - GraphQL Admin
Basically, the products/variants associated with a certain market are first assigned to a priceList: priceListCreate - GraphQL Admin and then that price list is assigned to a catalog: catalogCreate - GraphQL Admin and then that catalog is attached to the Market using the first mutation there.
You should be able to remove/add the catalogs there to assign or unassign products from a particular Market on a shop.
You could technically have a set up where you create two “versions” of the product on the shop, but have only one of those duplicated products visible on each market’s localized storefront.
Hope this helps - let me know if we can clarify anything on our end here.
so we already have our products on Shopify. BUT over time the supplier will change - so we need to dynamically alter the assigned markets - sounds like the MarketUpdate mutation will do the job.
Having looked at the documentation, I’m confused as to how I would (for example) take the product with ID of 9823565775160 out of the international market which has ID of 89602130232. The product is currently in two markets, that being one of them - and I’d want to remove the international option if we could only supply to the one country.
Having looked at the documentation, I’m confused as to how I would (for example) take the product with ID of 9823565775160 out of the international market which has ID of 89602130232. The product is currently in two markets, that being one of them - and I’d want to remove the international option if we could only supply to the one country. - can you help me? If I was doing this from front end, I’d go into the product, edit the publishing section, choose manage markets and update from there. That’s what I’m trying to automate.
Hey @Aidan_Heritage - you’d just need to remove the product you want to restrict from sale on a particular market from that market’s publication. There’s a bit more info here in our docs for the Markets API: Build a catalog
Let me know if I can help out further!