mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 13:11:23 +00:00
32 lines
462 B
TypeScript
32 lines
462 B
TypeScript
export const cartFragment = /* GraphQL */ `
|
|
fragment Cart on Order {
|
|
id
|
|
code
|
|
totalQuantity
|
|
subTotal
|
|
subTotalWithTax
|
|
total
|
|
totalWithTax
|
|
currencyCode
|
|
customer {
|
|
id
|
|
}
|
|
lines {
|
|
id
|
|
quantity
|
|
featuredAsset {
|
|
id
|
|
preview
|
|
}
|
|
productVariant {
|
|
id
|
|
name
|
|
product {
|
|
slug
|
|
}
|
|
productId
|
|
}
|
|
}
|
|
}
|
|
`
|