我试过了
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