File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
design-documents/graph-ql/coverage Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ input SetShippingAddressesOnCartInput {
3333input ShippingAddressInput {
3434 customer_address_id : Int # If provided then will be used address from address book
3535 address : CartAddressInput
36+ customer_notes : String
3637 pickup_location_code : String
3738}
3839
@@ -76,7 +77,6 @@ interface CartAddressInterface {
7677 postcode : String
7778 country : CartAddressCountry
7879 telephone : String
79- customer_notes : String
8080}
8181
8282type ShippingCartAddress implements CartAddressInterface {
@@ -85,6 +85,7 @@ type ShippingCartAddress implements CartAddressInterface {
8585 items_weight : Float
8686 cart_items : [CartItemQuantity ]
8787 pickup_location_code : String
88+ customer_notes : String
8889}
8990
9091type BillingCartAddress implements CartAddressInterface {
@@ -111,7 +112,6 @@ type SelectedShippingMethod {
111112 carrier_title : String
112113 method_title : String
113114 amount : Money
114- base_amount : Money
115115}
116116
117117type AvailableShippingMethod {
@@ -121,7 +121,6 @@ type AvailableShippingMethod {
121121 method_title : String
122122 error_message : String
123123 amount : Money !
124- base_amount : Money
125124 price_excl_tax : Money !
126125 price_incl_tax : Money !
127126 available : Boolean !
You can’t perform that action at this time.
0 commit comments