Skip to content

Commit 6b24f34

Browse files
committed
Merge remote-tracking branch 'origin/ENGCOM-4811-magento-graphql-ce-526' into graphql-develop-prs
2 parents d3fdecf + 5178dba commit 6b24f34

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/code/Magento/QuoteGraphQl/etc/schema.graphqls

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,14 @@ type SelectedShippingMethod {
231231
type AvailableShippingMethod {
232232
carrier_code: String!
233233
carrier_title: String!
234-
method_code: String!
235-
method_title: String!
234+
method_code: String @doc(description: "Could be null if method is not available")
235+
method_title: String @doc(description: "Could be null if method is not available")
236236
error_message: String
237237
amount: Float!
238-
base_amount: Float!
238+
base_amount: Float @doc(description: "Could be null if method is not available")
239239
price_excl_tax: Float!
240240
price_incl_tax: Float!
241+
available: Boolean!
241242
}
242243

243244
type AvailablePaymentMethod {

0 commit comments

Comments
 (0)