8 April 2022
CartsOrdersGraphQL
The total tax amount on Cart, Order, LineItem, CustomLineItem, and ShippingInfo. Before, your application had to calculate that amount if you wanted to display it to your customers.
Changes:
- [API] Added optional
totalTaxfield to TaxedPrice and TaxedItemPrice. - [GraphQL API] Changed the
TaxedPricetype:- Added the
totalTaxfield to theTaxedPricetype. - Added the
totalTaxfield to theTaxedItemPricetype.
- Added the
The following changes were introduced in terms of GraphQL SDL:
extend type TaxedPrice {
totalTax: Money
}
extend type TaxedItemPrice {
totalTax: Money
}