I am trying to delete many records for a data source. Why do I get the following error? I am the only one performing the query.
Query:
mutation {
deleteqAanswer(filter: {idDitio: {eq: null}}) {
deletedCount
}
}
Error:
{
"errors": [
{
"message": "WriteConflict error: this operation conflicted with another operation. Please retry your operation or multi-document transaction.",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"deleteqAanswer"
]
}
],
"data": {
"deleteqAanswer": null
}
}