Is there any way to upload multiple JSON files in neo4j.
I have 700+ files on my local and want to upload them at once.
Kindly let me know if is there any way to do it.
Thanks.
Is there any way to upload multiple JSON files in neo4j.
I have 700+ files on my local and want to upload them at once.
Kindly let me know if is there any way to do it.
Thanks.
If you turn it into CSV the faster method for large amounts of data upload is Neo4j-admin import - Operations Manual.
If the files are small and don't contain 10's/100's of millions of records, you could just set up an APOC procedure depending on the graph model and data present in the files.
http://neo4j-contrib.github.io/neo4j-apoc-procedures/3.5/cypher-execution/commit-batching/
How about apoc.periodic.iterate ?