Hi!
Im trying to make a big query to export results from a neo4j 4 database.
When using python to make the query, it seems results doesnt start streaming until the query has finished, which can take a very long time.
With javascript the results starts streaming pretty much at once.
I would like the second behaviour, but not use javascript.
Is it possible to make the python driver stream results as soon as they are available somehow?
Have I missed some config? I dont provide any extra configuration to the driver or session objects at all..
Thanks.