File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
app/code/Magento/QuoteGraphQl/etc Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -201,15 +201,15 @@ type Cart {
201
201
}
202
202
203
203
interface CartAddressInterface @typeResolver (class : " \\ Magento\\ QuoteGraphQl\\ Model\\ Resolver\\ CartAddressTypeResolver" ) {
204
- firstname : String
205
- lastname : String
204
+ firstname : String !
205
+ lastname : String !
206
206
company : String
207
- street : [String ]
208
- city : String
207
+ street : [String ! ] !
208
+ city : String !
209
209
region : CartAddressRegion
210
210
postcode : String
211
- country : CartAddressCountry
212
- telephone : String
211
+ country : CartAddressCountry !
212
+ telephone : String !
213
213
customer_notes : String
214
214
}
215
215
@@ -229,13 +229,13 @@ type CartItemQuantity {
229
229
}
230
230
231
231
type CartAddressRegion {
232
- code : String
233
- label : String
232
+ code : String !
233
+ label : String !
234
234
}
235
235
236
236
type CartAddressCountry {
237
- code : String
238
- label : String
237
+ code : String !
238
+ label : String !
239
239
}
240
240
241
241
type SelectedShippingMethod {
You can’t perform that action at this time.
0 commit comments