OBJECT

Price

A price, which includes currency code and net (default) and gross values.

You may prefer to use this rather than the separate priceInc, priceExc, 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
  • }