Closed
Description
Preconditions (*)
- Magento with a sample data
Steps to reproduce (*)
- Generate a customer token
mutation {
generateCustomerToken(
email: "[email protected]",
password: "[email protected]"
) {
token
}
}
- Set a
gender
value for a customer
mutation {
updateCustomer(
input: {
gender: 13
}
) {
customer {
firstname
gender
}
}
}
Expected result (*)
- Customer
gender
attribute may have one of the following values:
- Male (1)
- Female (2)
- Not specified (3)
Actual result (*)
{
"data": {
"updateCustomer": {
"customer": {
"firstname": "Veronica",
"gender": 13
}
}
}
}
Please provide Severity assessment for the Issue as Reporter. This information will help during Confirmation and Issue triage processes.
- Severity: S0 - Affects critical data or functionality and leaves users without workaround.
- Severity: S1 - Affects critical data or functionality and forces users to employ a workaround.
- Severity: S2 - Affects non-critical data or functionality and forces users to employ a workaround.
- Severity: S3 - Affects non-critical data or functionality and does not force users to employ a workaround.
- Severity: S4 - Affects aesthetics, professional look and feel, “quality” or “usability”.
Metadata
Metadata
Assignees
Labels
Gate 2 Passed. Manual verification of the issue description passedGate 3 Passed. Manual verification of the issue completed. Issue is confirmedGate 1 Passed. Automatic verification of issue format passedGate 4. Acknowledged. Issue is added to backlog and ready for developmentThe issue has been reproduced on latest 2.4-develop branch