I can delete edge predicates:
POST http://{{host}}/mutate?commitNow=true
Content-Type: application/json
{
"delete": [
{
"uid": "0x56",
"follows": [
{
"uid": "0x55"
}
]
}
]
}
But not the node itself:
POST http://{{host}}/mutate?commitNow=true
Content-Type: application/json
{
"delete": [
{
"uid": "0x56"
}
]
}
Using RDF is working:
POST http://{{host}}/mutate?commitNow=true
Content-Type: application/rdf
{
delete {
<0x56> <name> * .
}
}