``` { "data": null, "errors": [ { "m...
# orm-help
s
Copy code
{
  "data": null,
  "errors": [
    {
      "message": "Value for field email is too long.",
      "locations": [],
      "path": [
        "createUser"
      ],
      "code": 3007,
      "requestId": "us1:cjwfb6gjzzyp70b12cag9l2g2"
    }
  ]
}
has anyone seen this before? I am initiating a new project with Prisma v1.32.0-beta and with the most basic datamodel (containing solely type User with email, password, name) performing a
createUser
mutation to which, if the email (
@unique
field) is longer than (now trying
email:"<mailto:johanson.johanson@gmail.com|johanson.johanson@gmail.com>"
) it throws the above error - huh!? In other projects with v1.27 nothing like this has been seen before
b
what is data type of the email field in database?
c
text and json are both limited to 256kb in size.