I'm trying to delete all note nodes that have a relationship to a particular set of services:
match (n:note)<--(s:service) where s.serviceid in ["a", "b"] detach delete n
My database contains a single note with a relationship to service "b" node. Th...