I have a "messy" data source that has duplicates in it, and trying to process it cleanly into Neo4j.
Imagine the following graph:
MATCH (cmk:Make)-[r:hasModel]->(cmm:Model) RETURN cmk,r,cmm
I tried using MERGE but I guess it's for node properties onl...