Browse Source

fix(core): Include missing id field in ShippingLine type

Relates to #1792
Michael Bromley 3 years ago
parent
commit
481d0de059
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/core/src/api/schema/common/order.type.graphql

+ 1 - 0
packages/core/src/api/schema/common/order.type.graphql

@@ -93,6 +93,7 @@ type OrderList implements PaginatedList {
 }
 
 type ShippingLine {
+    id: ID!
     shippingMethod: ShippingMethod!
     price: Int!
     priceWithTax: Int!