We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d3fdecf + 5178dba commit 6b24f34Copy full SHA for 6b24f34
app/code/Magento/QuoteGraphQl/etc/schema.graphqls
@@ -231,13 +231,14 @@ type SelectedShippingMethod {
231
type AvailableShippingMethod {
232
carrier_code: String!
233
carrier_title: String!
234
- method_code: String!
235
- method_title: String!
+ method_code: String @doc(description: "Could be null if method is not available")
+ method_title: String @doc(description: "Could be null if method is not available")
236
error_message: String
237
amount: Float!
238
- base_amount: Float!
+ base_amount: Float @doc(description: "Could be null if method is not available")
239
price_excl_tax: Float!
240
price_incl_tax: Float!
241
+ available: Boolean!
242
}
243
244
type AvailablePaymentMethod {
0 commit comments