I using latest Neo4j.
and i want to copy all relationship from node id=1 to node id=2:
MATCH (n)-[r]->(m)
WHERE id(n) = 1
WITH r, m
MATCH (synonym)
WHERE id(synonym) = 2
CREATE (synonym)-[???]->(m)
How to get the name of the relationship (r) to put in the mark ???
Thanks for help!