ドキュメントhttp://readthedocs.org/docs/neo4j-rest-client/en/latest/indices.htmlをフォローしようとしています
インデックスクエリがノードを返すことを期待していますが、代わりに「Iterable:Node」を返します。
db = GraphDatabase("http://localhost:7474/db/data")
playerIndex = db.nodes.indexes.get("index1")
playerNode = db.nodes.create(player_id = "Homer")
playerIndex.add("player_id", "Homer", playerNode)
print playerIndex["player_id"]["Homer"], "\n", playerNode
プリント:
<Neo4j Iterable: Node>
<Neo4j Node: http://localhost:7474/db/data/node/157>
2行目のようなノードを返すようにneo4jrestclientインデックスクエリの結果を取得するにはどうすればよいですか?