mirror of
https://github.com/vercel/commerce.git
synced 2025-03-28 16:25:53 +00:00
24 lines
360 B
TypeScript
24 lines
360 B
TypeScript
export const searchResultFragment = /* GraphQL */ `
|
|
fragment SearchResult on SearchResult {
|
|
productId
|
|
productName
|
|
description
|
|
slug
|
|
sku
|
|
currencyCode
|
|
productAsset {
|
|
id
|
|
preview
|
|
}
|
|
priceWithTax {
|
|
... on SinglePrice {
|
|
value
|
|
}
|
|
... on PriceRange {
|
|
min
|
|
max
|
|
}
|
|
}
|
|
}
|
|
`
|