OBJECT
OrderItem
link GraphQL Schema definition
- type OrderItem {
- String :
- 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.
- String :
- DateTime :
- # N.B. this may be null if the Product has since been removed.
- Product :
- Int :
- Price :
- Price :
- # N.B. this may be null if the Product itself or the Variant has since been
- # removed.
- ProductVariant :
- # N.B. this may be null if the Product has since been removed.
- 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.
- String :
- }