Hi Shopify Team & Community,
We are encountering a critical blocking issue regarding the new UNLISTED product status in the context of Shopify POS UI Extensions.
Context: As per the recent changelogs (see: New unlisted product status), the UNLISTED status allows products to be hidden from search and collection listings while remaining purchasable via direct links or programmatic access.
The Issue: This behavior works as expected on the Online Store channel (the item is hidden but can be added to the cart programmatically). However, on Shopify POS, UNLISTED products appear to be completely inaccessible to POS UI Extensions.
When our app attempts to add an UNLISTED product to the cart or query it via the POS UI Extension API, the system acts as if the product does not exist.
Observed Behavior (POS):
- API Query: The product returns
publishedOnPOS: falsewhen queried, even if it is available to the publication. - Add to Cart: Attempting to add the line item via a POS UI Extension results in a ā1 product wasnāt foundā error.
- Visibility: The product is correctly hidden from the POS smart grid/search (this is the only part working as expected).
Expected Behavior: We believe the UNLISTED status should function on POS exactly as it does on the Online Store:
- Discovery: Hidden from the native POS UI (Search/Collections).
- Accessibility: Available to be queried via POS UI Extension APIs and allowed to be added to the cart programmatically by apps.
This is critical for apps that manage complex workflows (like custom modifiers, āsecretā menu items, or service fees) where we need the item to exist transactionally but do not want it cluttering the merchantās visual grid.
Technical Details & Reproduction:
1. Example Query We are querying the location to get the product details.
query getLocationById($id: ID!, $publicationId: ID!, $includePublication: Boolean!) {
location(id: $id) {
id
# ... (fetching collection list)
products(first: 250) {
nodes {
id
status
publishedOnPOS: publishedOnPublication(publicationId: $publicationId) @include(if: $includePublication)
title
# ...
}
}
}
}
2. API Response The response shows the status is UNLISTED, but publishedOnPOS returns false. This appears to be the root cause of the āProduct not foundā error when attempting to add to cart.
{
"id": "gid://shopify/Product/8758711156973",
"status": "UNLISTED",
"publishedOnPOS": false,
"title": "Hot Chocolate - Tax On"
}
3. Error Screenshot When attempting to add this specific ID to the cart via the extension:
Request: Can the Retail team please confirm if this parity gap between Online Store and POS regarding UNLISTED items is intended behavior? If so, is there a workaround to allow apps to transact UNLISTED items on POS?
Thanks!
