What I saw from the Dgraph Manaul(https://docs.dgraph.io/mutations/#delete) is that I have to know the exact uid for the nodes, then I can delete them one by one.
I’m wondering if there is a way to do it without geting to know the exact uid and more easier like below:
{
IDs as var(func: has(<somePredicate>)) {
}
delete {
IDs * * .
}
}