Using Match and Where can I delete relationships by ID.
Match ()-[r]-() Where ID(r)=1 Delete r
Is there an easier way?
Using the old syntax, but which will be removed in a future version.
start r=rel(id) delete r;
I use
MATCH ()-[r]-() WHERE id(r)=49 DELETE r