Hi,
I’ve followed the instructions here, but unfortunately using allDataAndSchema: true
results in
ClientError: Failed to delete data
Code: 200
The parameter allData: true
works (but obviously only deletes data). I have also tried if it falls if there is no data but just a schema. Unfortunately the mutation always fails, regardless of there is
- only a schema
- a schema and data
- only data
Here’s the mutation for completeness:
mutation {
dropData(allDataAndSchema: true) {
response {
code
message
}
}
}