mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
31 lines
432 B
TypeScript
31 lines
432 B
TypeScript
export const productDetails = /* GraphQL */ `
|
|
fragment productDetails on CrProduct {
|
|
productCode
|
|
name
|
|
description
|
|
imageUrl
|
|
imageAlternateText
|
|
sku
|
|
variationProductCode
|
|
price {
|
|
price
|
|
salePrice
|
|
}
|
|
options {
|
|
attributeFQN
|
|
name
|
|
value
|
|
}
|
|
properties {
|
|
attributeFQN
|
|
name
|
|
values {
|
|
value
|
|
}
|
|
}
|
|
categories {
|
|
id
|
|
}
|
|
}
|
|
`
|