1
如何遍歷圖上的所有關係,包括開始節點和結束節點?我想:py2neo:如何遍歷所有的關係採取開始節點和結束節點?
import sys
import time
import json
from py2neo import Graph, Node, authenticate, Relationship
graph =Graph()
cypher = graph.cypher
def handle_row(row):
a,b = row
... do some stuff with a,b
cypher.execute("match (a)-[]->(b) return a, b", row_handler=handle_row)
但我得到的錯誤:
`typeError: <function handle_row at ...> is not JSON serializable`
就看到了,我也可以用在文檔中:'對於R在graph.cypher.stream( 「MATCH(a) - [] - >(b)RETURN ID(a),id(b)」): print(r [0],r [1])'。你會知道效率方面的差異嗎? – montefuscolo
我想說流對於大型結果集更好。 –