Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
class Person(Node): id = String(unique = True) name = String()
我尝试了以下方法来创建 Person 节点。但它不起作用。
person = { 'Person' : Person(name='Record', id = 1004).__dict__ } client.record_create(0, person)
我究竟做错了什么?
您可以使用“命令”语句: