标签: orientdb pyorient
class Person(Node): id = String(unique = True) name = String()
我尝试了以下方法来创建Person节点。但这不起作用。
person = { 'Person' : Person(name='Record', id = 1004).__dict__ } client.record_create(0, person)
我在做什么错了?
答案 0 :(得分:0)
您可以使用“命令”语句: