GraphQL OBJECT

CartItem

link Definition

  • type CartItem {
  • # Product description. Corresponds to the Additional name information in the
  • # Commerce Assistant.
  • additionalNameInformation: String
  • # The cart this item belongs to.
  • cart: Cart
  • # Coupon code for a promotion associated with the product.
  • couponCode: String
  • # Long description of the product. This corresponds with Product > Images &
  • # Content > Product and Marketing Content > Description in the Commerce Assistant.
  • description: String
  • # Discount pricing.
  • #
  • # Arguments
  • # includedDiscountTypes: Input to filter for specific discount
  • # types only.
  • discounts(includedDiscountTypes: [DiscountPriceTypeEnum!]): [TypedPrice]
  • # Discount information for the product.
  • discount: Discount
  • # Your internal product ID.
  • internalProductId: String
  • # Maximum quantity of the product which a customer can order.
  • maxQuantity: Int
  • # Minimum quantity of the product which a customer can order.
  • minQuantity: Int
  • # Monthly total price for the cart item.
  • monthlyPrice: Price
  • # Product name used in customer communication.
  • name: String!
  • # List of the operating systems that this product supports.
  • operatingSystem: String
  • # Pop-up information bubble that is used to display more information about a
  • # product in the cart.
  • popupInformation: String
  • # Unique ID of the product.
  • productId: Int!
  • # Small product image.
  • productImageSmall: ClientWebbinary
  • # Medium product image.
  • productImageMedium: ClientWebbinary
  • # Large product image.
  • productImageLarge: ClientWebbinary
  • # Item quantity.
  • quantity: Int!
  • # Running number of the item in the cart.
  • runningNo: Int
  • # Short description of the product. This corresponds with Product > Images &
  • # Content > Product and Marketing Content > Short description in the Commerce
  • # Assistant.
  • shortDescription: String
  • # The subscription settings of the product.
  • subscriptionSettings: ProductSubscriptionSettings
  • # List of requirements a computer must have to use this product. This corresponds
  • # with Product > Images & Content > Product and Marketing Content > System
  • # requirements in the Commerce Assistant.
  • systemRequirements: String
  • # Pricing information for the product after the discount has been subtracted.
  • singlePrice: Price!
  • # Pricing information for the product before the discount has been subtracted.
  • singlePriceWithoutDiscount: Price!
  • # Pricing information for the product after the discount has been subtracted.
  • totalPrice: Price!
  • # Pricing information for the product before the discount has been subtracted.
  • totalPriceWithoutDiscount: Price!
  • # Tax rate (percentage) applicable in the country.
  • vatRate: Percentage! @deprecated( reason: "Renamed to taxRate." )
  • # Tax rate (percentage) applicable in the country.
  • taxRate: Percentage!
  • # Holds additional characteristics of the cart item as a localized string.
  • productFeatures: String
  • }