2021-01-25 21:05:03 +01:00

20 lines
340 B
TypeScript

export const searchResultFragment = /* GraphQL */ `
fragment SearchResult on SearchResult {
productId
productName
description
description
slug
sku
currencyCode
productAsset {
id
preview
}
priceWithTax {
... on SinglePrice { value }
... on PriceRange { min max }
}
}
`