Issue Description: What’s happening?
I’m not able to execute the userLogin mutation with my credentials
Reproduce the Issue: What steps can someone take to replicate the problem?
- My login is Email - Password, the user was created with the userSignUpWithTokenmutation
- I’m trying the mutation on the API EXPLORER
- I’m testing with the authProfile used to create the user.
Expected Behavior: What did you expect to happen?
successfully log in with the mutation
Actual Behavior: What actually happened?
{
  "data": {
    "userLogin": null
  },
  "errors": [
    {
      "message": "The request is invalid.",
      "locations": [
        {
          "line": 2,
          "column": 3
        }
      ],
      "path": [
        "userLogin"
      ],
      "code": "ValidationError",
      "details": {
        "password": "Incorrect email or password"
      }
    }
  ]
}
#### More details or screenshot
``` 