-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Open
Labels
Issue: ready for confirmationProgress: dev in progressProject: GraphQLReported on 2.4.5Indicates original Magento version for the Issue report.Indicates original Magento version for the Issue report.feature request
Description
Magento version: 2.4.5
Graphql: customerCart
Request:
{ customerCart { billing_address { country { label code } firstname lastname } shipping_addresses { country { label code } } } }
Response:
{ "data": { "customerCart": { "billing_address": { "country": { "label": "DE", "code": "DE" }, "firstname": "Ronak", "lastname": "Chauhan" }, "shipping_addresses": [ { "country": { "label": "DE", "code": "DE" } } ] } } }
Expected result:
"country": { "label": "Germany", // this should be full name of the country "code": "DE" },
Metadata
Metadata
Assignees
Labels
Issue: ready for confirmationProgress: dev in progressProject: GraphQLReported on 2.4.5Indicates original Magento version for the Issue report.Indicates original Magento version for the Issue report.feature request
Type
Projects
Status
In Progress