Files
commerce/framework/vendure/utils/fragments/search-result-fragment.ts
2021-10-11 13:38:48 +07:00

29 lines
459 B
TypeScript

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