Price

(OBJECT)

amount with currency, possibility to format/locale and indication if it is net or gross

link GraphQL Schema definition

  • type Price {
  • # amount with rounding rules
  • value: Float!
  • # raw amount (unrounded)
  • raw_value: Float!
  • # currency reference
  • currency: Currency!
  • # includes tax or not - for VAT non-payer this field may carry both values and not
  • # to be relied upon
  • is_net_price: Boolean
  • # amount incl. currency symbol and optional formatting/rounding rules
  • formatted: String
  • }