Files
sent-shop/lib/shopify/fragments/product.ts
2026-01-19 20:21:14 +01:00

70 lines
1.1 KiB
TypeScript

import imageFragment from './image';
import seoFragment from './seo';
const productFragment = /* GraphQL */ `
fragment product on Product {
id
handle
availableForSale
title
description
descriptionHtml
options {
id
name
values
}
priceRange {
maxVariantPrice {
amount
currencyCode
}
minVariantPrice {
amount
currencyCode
}
}
variants(first: 250) {
edges {
node {
id
title
availableForSale
selectedOptions {
name
value
}
price {
amount
currencyCode
}
}
}
}
featuredImage {
...image
}
images(first: 20) {
edges {
node {
...image
}
}
}
seo {
...seo
}
tags
updatedAt
metafields(identifiers: [{ namespace: "custom", key: "is_box_product" }]) {
id
key
value
}
}
${imageFragment}
${seoFragment}
`;
export default productFragment;