OBJECT

ShippedItem

Quantity and LineItem which has been shipped as part of a parent Shipment.

link GraphQL Schema definition

  • type ShippedItem implements Node {
  • id: ID!
  • # LineItem which has had the quantity of items shipped
  • lineItem: LineItem!
  • quantity: Int!
  • }