commerce/packages/vendure/src/utils/fragments/search-result-fragment.ts
2022-01-15 00:18:44 -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
}
}
}
`