This is the `datamodel.graphql` file: ```type User...
# orm-help
r
This is the
datamodel.graphql
file:
Copy code
type User {
  id: ID! @id
  name: String!
  createdAt: DateTime! @createdAt
  updatedAt: DateTime! @updatedAt
}
If I try to create a new user I get this error:
Copy code
"errors": [
    {
      "message": "Whoops. Looks like an internal server error. Search your server logs for request ID: local:ckatvww0900030724wfxfehnw",
      "path": [
        "createUser"
      ],
      "locations": [
        {
          "line": 2,
          "column": 3
        }
      ],
      "requestId": "local:ckatvww0900030724wfxfehnw"
    }
  ]