1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-14 05:37:51 +00:00
2021-06-02 11:46:38 -03:00

25 lines
376 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
}
}
}
`