0

新しいノードを作成しようとしていますが、次の行にプロパティを追加すると失敗します。例:

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>)

もう1つのクエリ:ノードのプロパティと別のノードのプロパティの関係を追加するにはどうすればよいですか?

たとえば、上記の関係では、各ノードに固有のホスト間の関係を作成したい

4

1 に答える 1

0

著者によると、@versaeそれは

neo4j-rest-clientでは、構文は次のとおりです。

uid.set('hosts',<value>)

または

uid['hosts'] = <value>

参照:https ://groups.google.com/d/msg/neo4j/YbIKeHh4lCw/Grj8nRx7UdAJ

于 2013-03-20T13:05:02.077 に答える