私はこれらのドキュメントに従おうとしています: http://readthedocs.org/docs/neo4j-rest-client/en/latest/indices.html これはうまくいきます
from neo4jrestclient.client import GraphDatabase, Q
db = GraphDatabase("http://localhost:7474/db/data")
userIndex = db.nodes.indexes.get("index2")
print userIndex.query('username', "*")[:]
ドキュメントによると、これも機能するはずですが、機能しません。
print userIndex.query(Q('username', "*"))[:]
pip リポジトリで最新バージョンにアップグレードしました。これはバグですか?