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