OBJECT

CheckoutLineItem

A single line item in the checkout, grouped by variant and attributes.

link GraphQL Schema definition

  • type CheckoutLineItem implements Node {
  • # Extra information in the form of an array of Key-Value pairs about the line
  • # item.
  • customAttributes: [Attribute!]!
  • id: ID!
  • # The quantity of the line item.
  • quantity: Int!
  • # Title of the line item. Defaults to the product's title.
  • title: String!
  • # Product variant of the line item.
  • variant: ProductVariant
  • }