GraphQL OBJECT

Pricing

Pricing information for the product.

link Definition

  • type Pricing {
  • # Pricing information for all units of the product.
  • price: Price!
  • # Pricing information for one single unit of the product, including shipping and
  • # discounts.
  • singlePrice: Price!
  • # Promotional pricing for the product.
  • discount: Price
  • # Shipping pricing for the product.
  • shipping: Price
  • # Complete pricing for all units of the product, including shipping and discounts.
  • totalPrice: Price!
  • # Complete pricing for all units of the product, but without discounts.
  • totalPriceWithoutDiscount: Price!
  • # Discount pricing.
  • #
  • # Arguments
  • # includedDiscountTypes: Input to filter for specific discount
  • # types only.
  • discounts(includedDiscountTypes: [DiscountPriceTypeEnum!]): [TypedPrice]
  • }