fix: use PRODUCT_FRAGMENT to get attributes for bundle detection
Some checks are pending
Build and Deploy / build (push) Waiting to run

This commit is contained in:
Unchained
2026-03-24 20:26:42 +02:00
parent 3d8a77dafa
commit 00f63c32f8

View File

@@ -6,7 +6,7 @@ export const GET_PRODUCTS = gql`
products(channel: $channel, first: $first) {
edges {
node {
...ProductListItemFragment
...ProductFragment
}
}
pageInfo {
@@ -15,7 +15,7 @@ export const GET_PRODUCTS = gql`
}
}
}
${PRODUCT_LIST_ITEM_FRAGMENT}
${PRODUCT_FRAGMENT}
`;
export const GET_PRODUCT_BY_SLUG = gql`