OBJECT

OrderItem

link GraphQL Schema definition

  • type OrderItem {
  • articleNumber: String
  • discounts: [OrderItemDiscount]
  • # Name of the Product at the time the order was placed (may since have changed).
  • # Use this as a fallback if the 'product' field itself is null.
  • name: String
  • preOrderDate: DateTime
  • # N.B. this may be null if the Product has since been removed.
  • product: Product
  • quantity: Int
  • total: Price
  • unitPrice: Price
  • # N.B. this may be null if the Product itself or the Variant has since been
  • # removed.
  • variant: ProductVariant
  • # N.B. this may be null if the Product has since been removed.
  • variantOptionNames: [String]
  • # Value of the Variant at the time the order was placed (may since have changed).
  • # Use this as a fallback if the 'variant' field itself is null. Will be null when
  • # the OrderItem is not a Variant.
  • variantValue: String
  • }

link Require by