--
--
--
--
--
Hi Lasse,Can you construct a query for me where only children with outgoing relationships must be deleted?I am struggling to write a query for thsirequirement:nodeits relationships,its children with outgoing relationship
START a=node(1)MATCH (a)-[rels*0..]-(z)
FOREACH(rel IN rels: DELETE rel)
DELETE a
DELETE z
--
--