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.
- : [Attribute!]!
- # The number of products variants associated to the line item.
- : Int!
- # The title of the product combined with title of the variant.
- : String!
- # The product variant object associated to the line item.
- : ProductVariant
- }