MATCH (n) where n.channel = 'sports' DETACH DELETE n
Although it deletes all nodes and relationships of the 'n', the labels still shows up in the browser. It's annoying. How can I wipe out all traces of those nodes and relationships once they are deleted?
Your current Cypher request deletes all nodes and their relationships which have a property channel equal to sports. If you want to delete nodes more safely, you can try:
Now, if you still can see Labels, make sure you don't have nodes remanining and if it's not the case, you must check if there are constraints or indexes: