How to Identify FoxSell Bundle Products in Shopify GraphQL
What is the FoxSell App ID?
Every FoxSell Bundles product has a special tag that marks it as a bundle. In Shopify GraphQL, you can use the filter product_configuration_owner:67872686081 to find all FoxSell bundle products.
The app ID 67872686081 is a constant — it never changes and always refers to FoxSell Bundles.
Which Bundle Types Are Included?
This filter works for:
- Fixed Bundles
- Multi-Variant Bundles
It does not include Dynamic Bundles (Mix and Match).
Example GraphQL Query
Here is a query that returns all FoxSell bundle products from your store:
query {
products(
first: 50
query: "product_configuration_owner:67872686081"
) {
edges {
node {
id
title
}
}
}
}
This returns the ID and title for each bundle product. You can expand the fields in the node block to fetch additional product data as needed.
Use Cases
- Build custom bundle collection pages
- Sync bundle data to external systems
- Identify bundles for custom reporting or integrations
Need help? Contact us via in-app chat or email support@foxsell.app.
Updated on: 06/04/2026
Thank you!