Skip to content

Commit 885b06a

Browse files
committed
MC-20636: MyAccount :: Order Details :: Order Details by Order Number
- Schema update for shipping_handling
1 parent dab6cd4 commit 885b06a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/code/Magento/SalesGraphQl/etc/schema.graphqls

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,10 @@ type InvoiceTotal implements SalesTotalAmountInterface @doc(description: "Invoic
143143

144144
type ShippingHandling @doc(description: "The Shipping handling details") {
145145
total_amount: Money! @doc(description: "The total amount for shipping")
146-
amount_inc_tax: Money @doc(description: "The shipping amount, including tax")
147-
amount_exc_tax: Money @doc(description: "The shipping amount, excluding tax")
146+
amount_including_tax: Money @doc(description: "The shipping amount, including tax")
147+
amount_excluding_tax: Money @doc(description: "The shipping amount, excluding tax")
148148
taxes: [TaxItem] @doc(description: "Contains details about taxes applied for shipping")
149+
discounts: [Discount] @doc(description: "The applied discounts to the shipping")
149150
}
150151

151152
type OrderShipment @doc(description: "Order shipment details") {

0 commit comments

Comments
 (0)