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.
- : [Attribute!]!
- : ID!
- # The quantity of the line item.
- : Int!
- # Title of the line item. Defaults to the product's title.
- : String!
- # Product variant of the line item.
- : ProductVariant
- }