我尝试过
graph.create_edge(Friend, orientRecord1, orientRecord2)
但是我得到AttributeError:'OrientRecord'对象没有属性'_id'
因为orientRecord中没有_id。我究竟做错了什么?如何使用此功能?
这是我的课堂结构
class Person(Node):
id = String(unique = True)
name = String()
pass
class Friend(Relationship):
pass