Pyorient:在OrientDB中创建边缘而不使用原始查询

时间:2018-08-06 08:03:15

标签: orientdb pyorient

我尝试过

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

1 个答案:

答案 0 :(得分:1)

您可以使用“ command”语句创建边线:

enter image description here

结果是这样的:

enter image description here

这是正确的输出,因为图形是这样的:

enter image description here