Rodrigo
05/30/2020, 5:01 PMdatamodel.graphql
file:
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:
"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"
}
]