Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
05-31-2019 10:47 AM
Neo4j : 3.5.5
Driver : Python 1.7.2
Model is self explanatory. Book contains many instruments. Instrument has many dependencies
There are 1.3 M Relationships and 1.7 M Nodes. I ran the following query to add one more relationship with additional attribute. This is hanging.
MATCH (book:Book)-[c:CONTAINS]->(instr:Instrument)-[d:DEPENDENCIES]->(dep:Dependency) CREATE (book)-[c1:CONTAINS {updated:"LATEST"}]->(instr)-[d1:DEPENDENCIES {updated:"LATEST"}]->(dep)
Possibly its not designed properly but wanted more inputs for this?
Solved! Go to Solution.
05-31-2019 01:44 PM
You might want to use transaction batching - check out apoc.periodic.iterate.
05-31-2019 01:44 PM
You might want to use transaction batching - check out apoc.periodic.iterate.
All the sessions of the conference are now available online