START n1=node(7727), n2=node(7730)MATCH n1-[r:SKILL]->n2
--
You received this message because you are subscribed to the Google Groups "Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Would this same query work without specific start points?i.e.MATCH (:SomeLabel)-[r:REL_TYPE]->(:AnotherLabel)SKIP 1DELETE rBasically I am trying to introduce a CREATE UNIQUE, however the data in the graph already has duplicates, so the CREATE UNIQUE is failing due to multiple paths, and I want to clean it up manually.