Hello,
I made a Shopify function that makes use of the Expand function to make a bundle. Everything works regarding the function, and making the order. However when I go to reports and run a ShopifyQL query that has
WHERE line_type = 'product' AND line_item_is_bundle = true
my order that includes that Bundle does not show. If I make a bundle with Shopify Bundles or use any other Bundle Apps the order will show. So I tried to make a new product using GraphQL that has the following
claimOwnership: {
bundles: true
}
...
productVariants {
id
requiresComponents
}
That has not done it. I also tried to add “line_item_is_bundle” as a cart line item attribute property which also had no affect.
My question is how can I create a bundle item that has “line_item_is_bundle” as true when using the reports?
Thanks,
Ahmed