We debugged this intensively and double checked publications, status, etc. and we donât know whatâs going on. This merchant is on 10.9.1, at least one other merchant has reported the same issue on 10.8.2.
We are currently logged into their POS account on our own device and as one example, here is a product created via the API by our app hours ago (active and published to POS channel) and we canât seem to find it at all on their POS device which I believe is likely related. Data Synchronization is up to date, here is a link to the product: https://admin.shopify.com/store/spokandy-chocolatier/products/7214581448784
Hereâs a photo a different merchant just sent of what happens when they try to save the cart (with the line item that cannot be checked out) and retrieve it as a Draft Order in POS.
Something has seemingly broken / changed and is preventing products created by our app from being available to POS, this is quite urgent.
@Alan_G do you know what might be going on here? It seems to be affecting merchants across multiple Shopify POS versions, did something change or break in the product / publication API side?
Hey @derrick thanks for flagging this! Just wanted to reach out to you here to let you know our product team is investigating this. Canât guarantee a turnaround time, but either they or I will update you here once we have more info to share.
Appreciate you reporting this, weâll get this looked into.
Thanks @Alan_G . We just got off the phone with a merchant who, after they spoke with Shopify support for something unrelated to our app, believes itâs due to the introduction of a new Retail Catalog attribute / field, and our temporary products are missing this.
Is this whatâs going on? If so, how do we update our GraphQL calls to include this?
Shopify Admin > Markets > Catalogs > All Retail > Check the box for Automatically include new products
We appreciate your quick responses so far, but itâs been nearly 24 hours since we reported this, and we ended up learning about this workaround from one of our merchants. If this was suspected or known internally, is there a reason it wasnât shared with us earlier?
Also, could you clarify how we can programmatically set the Catalog for new products via the API?
Hey @derrick , thanks for reaching out and reporting this. This one was caused by another feature unrelated to POS, I believe theyâre working on fixing the root cause. As for your question about programatically setting the catalog when creating a product, I was told this by someone from that team:
âFor the control aspect, I think they can subscribe to webhooks for catalog creation and update the auto publish flag on the publication via graphql publicationUpdate , would that work?â
I have almost zero context on this catalog stuff, but it sounds promising?
@JS_Goupil thanks for chiming in, good to hear from you!
We also have very little context on the catalog stuff, but we canât be the only app that programmatically creates products that a merchant later wants to check out on POS. Having to listen for catalog creation and then add this individually for each merchant feels too onerous.
Our preferred solution would be one of:
Make the auto publish flag true by default, at least for All Retail Catalog. If the recommendation from the Catalog team is for us to do this across the board for any merchant with our app installed, programmatically by listening to webhooks, canât they just implement the change themselves?
OR
Related to the above, any product that gets published to POS channel shouldnât be then excluded from the All Retail catalog. This lets us just continue to depend on Publications instead of the current breaking change
OR
In the same way we can publish a specific product to 'Point of Sale' as a channel, let us do the same for the All Retail catalog (though this involves 2 additional calls - one to retrieve their catalogs, and then one to apply it to the product)
Again, I admit I donât understand how Catalogs work and interact here, but happy to chat directly with someone on that team about our use case so they can recommend the simplest path forward.
From what we can tell based on our own testing, as of today it appears that the POS team and Catalog team got things sorted, so now if a product is published to the POS channel (but not the âAll Retailâ Catalog), it will still allow the product to check out as expected.
With guidance from @Brian_Edwards, we also learned how to programmatically publish products to the All Retail Catalog as follows. This requires API version 2025-04 or newer.
Get Catalogs:
catalogs(first:50) {
nodes {
id
title
publication {
id
name
}
}
}
Find the Catalog titled âAll Retailâ and grab its corresponding Publication ID, and then publish the product to this catalog: