2021-01-25 21:05:03 +01:00

28 lines
417 B
TypeScript

export const cartFragment = /* GraphQL */ `
fragment Cart on Order {
id
code
totalQuantity
subTotal
subTotalWithTax
total
totalWithTax
currencyCode
lines {
id
quantity
featuredAsset {
id
preview
}
productVariant {
name
product {
slug
}
productId
}
}
}
`