我正在尝试创建新节点,但是当我在下一行添加额外属性时它会失败。 例如:
gdb = GraphDatabase("http://localhost:7474/db/data/")
index = gdb.nodes.indexes.create('blogger')
for i in b:
uid = gdb.nodes.create(user_id=x,gender=i[0],profile_views=i[1],industry=i[2],occupation=i[3],email=i[4],locality=i[5],country=i[6],region=i[7])
# till here it adds all the properties as mentioned
# following 2 lines of code fails
uid.setProperty('hosts',<value>)
uid.relationships.create("follows",<value>)
还有一个问题:我们如何在节点的属性与另一个节点的属性之间添加关系
例如:在上述关系中,我想在主机之间创建每个节点唯一的关系
答案 0 :(得分:0)
根据作者的说法,@versae是
在neo4j-rest-client中,语法只是
uid.set('hosts',<value>)
或者
uid['hosts'] = <value>
请参阅:https://groups.google.com/d/msg/neo4j/YbIKeHh4lCw/Grj8nRx7UdAJ