Files
commerce/framework/vendure/utils/fragments/search-result-fragment.ts

28 lines
436 B
TypeScript

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