2

私はこれらのドキュメントに従おうとしています: 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 リポジトリで最新バージョンにアップグレードしました。これはバグですか?

4

2 に答える 2

4

それがlucene-querybuilderよりもneo4j-rest-clientの問題であるかどうかはわかりません。とにかく、次のような引数を使用してみてください。wildcard

print userIndex.query(Q('username', "*", wildcard=True))[:]

そして、それがうまくいったかどうか教えてください:-)

于 2012-06-04T18:02:14.520 に答える