Files
commerce/framework/vendure/utils/fragments/search-result-fragment.ts
lytrankieio123 47107e2702 feat: featured products
:%s
2021-10-04 19:36:47 +07:00

27 lines
415 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
}
},
facetValueIds,
collectionIds,
}
`