OBJECT

Price

A price, which includes currency code and net (default) and gross values. You may prefer to use this rather than the separate price_inc, price_exc, currency fields originally defined, and retained for backwards compatibility where they already existed.

link GraphQL Schema definition

  • type Price {
  • # three-letter ISO currency code
  • currency: String
  • # price amount ex vat
  • amount: Float!
  • # price inc vat, if applicable
  • gross: Price
  • }