I'm importing some 10.000 datasets resulting in the respective number of nodes. But using apoc.load.json seems to have a limit with 5000 nodes. What can I do to work around this limitation?
I would like to avoid to split my original data in pieces of 5000 rows max...
it does stream the data, so if you immediately create the graph data from it it should be fine.
best works with a json-lines format.
you can use json-path to stream fragments of the json into your cypher statement