Quickly create a 100k Neo4j graph data model with Cypher only by Michael Hunger.
From the post:
We want to run some test queries on an existing graph model but have no sample data at hand and also no input files (CSV,GraphML) that would provide it.
Why not create quickly it on our own just using cypher. First I thought about using Cypher to generate CSV files and loading them back, but it is much easier.
The domain is simple
(:User)-[:OWN]→(:Product)
but good enough for collaborative filtering or demographic analysis.
…
Admittedly a “simple” domain but I’m curious how you would rank sample data?
We can all probably recognize “simple” domains but what criteria should we use to rank more complex sample data?
Suggestions?