I am trying to use apoc.export.json.all and was hoping that it would work like the apoc.export.csv.all in that you can specify:
CALL apoc.export.csv.all(null, { stream: true, batchSize: 10000 }) YIELD data
I would like to use that so I can stream th...