Skip to content

Commit 9a5edfc

Browse files
committed
Added shipping_incl_tax to order
1 parent 91d545c commit 9a5edfc

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/Model/Resolver/ExpandedOrderResolver.php

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ public function resolve(
9292

9393
$shippingInfo = [
9494
'shipping_amount' => $order->getShippingAmount(),
95+
'shipping_incl_tax' => $order->getShippingInclTax(),
9596
'shipping_method' => $order->getShippingMethod(),
9697
'shipping_address' => $order->getShippingAddress(),
9798
'shipping_description' => $order->getShippingDescription(),

src/etc/schema.graphqls

+1
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ type ShippingInfo {
302302
shipping_address: OrderCustomerAddress
303303
shipping_description: String
304304
shipping_amount: Float
305+
shipping_incl_tax: Float
305306
tracking_numbers: [String]
306307
}
307308

0 commit comments

Comments
 (0)