OBJECT
CartItem
link GraphQL Schema definition
- type CartItem {
- : String!
- : [SelectedProductConfiguration]
- : [CartItemComment]
- # Discount total
- : Price
- : [Discount]
- : String!
- : [ProductImage] @deprecated( reason: "Please use images on product instead." )
- : DateTime
- # Total price, excluding discounts
- : Price!
- # Unit price, excluding discounts
- : Price!
- : Product
- : Int!
- : String
- # Total price, including discounts
- : Price!
- # Unit price, including discounts
- : Price!
- : ProductVariant
- : [String]
- }