commerce/packages/vendure/utils/fragments/search-result-fragment.ts
2022-01-14 23:44:08 -05:00

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
}
}
}
`