Skip to main content
Version: 3.x

TaxedMoney

Represents a monetary value with taxes. In cases where taxes were not applied, net and gross values will be equal.

type TaxedMoney {
currency: String!
gross: Money!
net: Money!
tax: Money!
}

Fields

TaxedMoney.currency ● String! non-null scalar

Currency code.

TaxedMoney.gross ● Money! non-null object

Amount of money including taxes.

TaxedMoney.net ● Money! non-null object

Amount of money without taxes.

TaxedMoney.tax ● Money! non-null object

Amount of taxes.

Returned by

ordersTotal query

Member of

Checkout object ● CheckoutLine object ● Order object ● OrderLine object ● ProductPricingInfo object ● ProductVariant object ● TaxedMoneyRange object ● VariantPricingInfo object


Was this page helpful?