| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- insert into /test/cypher (id, name) values ("cypher:e1", "entity1" )
- ;
- insert into /test/cypher2 (id, name) values ("cypher2:e2", "entity2" )
- ;
- insert into /test/cypher3 (id, name) values ("cypher3:e3", "entity3" )
- ;
- insert into /test/cypher4 (id, name) values ("cypher4:e4", "entity4" )
- ;
- insert into /test/cypher5 (id, name) values ("cypher5:e5", "entity5" )
- ;
- insert into /test/cypher6 (id, name) values ("cypher6:e6", "entity6" )
- ;
- insert into /test/cypher7 (id, name) values ("cypher7:e7", "entity7" )
- ;
- insert into /test/cypher8 (id, name) values ("cypher8:e8", "entity8" )
- ;
- insert into /test/cypher9 (id, name) values ("cypher9:e9", "entity9" )
- ;
- create ("cypher:e1")-[:connect]->("cypher2:e2")
- ;
- create ("cypher3:e3")-[:connect]->("cypher2:e2")
- ;
- create ("cypher4:e4")-[:connect]->("cypher2:e2")
- ;
- create ("cypher5:e5")-[:connect]->("cypher4:e4")
- ;
- create ("cypher6:e6")-[:connect]->("cypher4:e4")
- ;
- create ("cypher7:e7")-[:connect]->("cypher5:e5")
- ;
- create ("cypher8:e8")-[:connect]->("cypher5:e5")
- ;
- create ("cypher8:e8")-[:connect]->("cypher6:e6")
- ;
- create ("cypher8:e8")-[:connect]->("cypher7:e7")
- ;
- create ("cypher9:e9")-[:connect]->("cypher8:e8")
- ;
|