OBJECT

OrderLineItem

Represents a single line in an order. There is one line item for each distinct product variant.

link GraphQL Schema definition

  • type OrderLineItem {
  • # List of custom attributes associated to the line item.
  • customAttributes: [Attribute!]!
  • # The number of products variants associated to the line item.
  • quantity: Int!
  • # The title of the product combined with title of the variant.
  • title: String!
  • # The product variant object associated to the line item.
  • variant: ProductVariant
  • }