问题 If I do something like this: from py2neo import Graph graph = Graph() stuff = graph.cypher.execute(""" match (a:Article)-[p]-n return a, n, p.weight """) on a database with lots of articles and links, the query takes a long time and uses all my system's memory, presumably because it's copying the entire result set into memory in one go. Is there some kind of cursor-based version where I could iterate through the results one at a time without having to have them all in memory at once? EDIT I