Objects
CartItemType
Type containing cart item information
Type containing cart item information
type CartItemType {
product: ProductType
skuId: Int!
id: ID!
totalPrice: PriceType
unitPrice: PriceType
quantity: Int!
campaign: CampaignType
groupKey: ID
productPackage: ProductPackageCartItemType
message: String
}
Fields
product ● ProductType object
Product
skuId ● Int! non-null scalar required
SKU Id
id ● ID! non-null scalar required
Cart item Id
totalPrice ● PriceType object
Total price
unitPrice ● PriceType object
Price per unit
quantity ● Int! non-null scalar required
Quantity
campaign ● CampaignType object
Campaign
groupKey ● ID scalar
The key of the group that this cart item belong to
productPackage ● ProductPackageCartItemType object
Contains package meta data if the cart item was part of package
message ● String scalar
Custom message
Member Of
CartType object