with driver.session() as session:
result = session.run("MATCH(n) RETURN n")
return result
this result object is containing no data when tried to use in different function as an iterator but it works within same function. I am not sure if...
even with this approach you are storing all results in a list at once in the memory, i don't want to do that, I want that i can use it as an iterator for accessing records one by one without storing it in any list.
Basically what i mean to say is I w...