How to insert & symbol in node property value via Merge statement? I am using Neo4j enterprise 3.1.4.
E.g
Merge(n:Person) set n.id=123, n.name = "Julia & Ratchel"
I am having my around 100 million data sets as documents in MongoDb. Is there any real time pipeline (Java based) available to load those mongo documents to Neo4j?
Thank you Michael for the details.
I am getting 5-6 GB feed files of different formats like csv, fixed length, xml json etc. Earlier i was directly reading the files through Java and building the Neo4j model as data coming in csv is not straight forw...