2021-05-27 12:27:22 +02:00

32 lines
433 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
}
}
}
`