新しいノードを作成しようとしていますが、次の行にプロパティを追加すると失敗します。例:
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つのクエリ:ノードのプロパティと別のノードのプロパティの関係を追加するにはどうすればよいですか?
たとえば、上記の関係では、各ノードに固有のホスト間の関係を作成したい