Describe the bug
Trying to delete a record registered with an UUID return a internal database error
To Reproduce
Steps to reproduce the behavior:
type User {
id: UUID! @unique
name: String!
}
mutation {
createUser(data: { name: "John" }) {
id
name
}
}
{
"data": {
"createUser": {
"id": "8c3fde44-b096-43b2-82a2-e766800bfceb",
"name": "John"
}
}
}mutation {
deleteUser(where:{id:"8c3fde44-b096-43b2-82a2-e766800bfceb"}) {
id
name
}
}{
"data": {
"deleteUser": null
},
"errors": [
{
"message": "Whoops. Looks like an internal server error. Search your server logs for request ID: local:api:cjjxtfsij000m0839w20gmiit",
"path": [
"deleteUser"
],
"locations": [
{
"line": 2,
"column": 3
}
],
"requestId": "local:api:cjjxtfsij000m0839w20gmiit"
}
]
}
Expected behavior
Delete the record
Screenshots
Docker container log

Versions:
The fix for this was merged a few days ago. So it is available in 1.13.4.
Most helpful comment
The fix for this was merged a few days ago. So it is available in
1.13.4.