gpt4 book ai didi

python - 在 neo4jrestclient 中构建 Lucene 查询?

转载 作者:行者123 更新时间:2023-11-28 23:01:39 25 4
gpt4 key购买 nike

我正在尝试遵循这些文档: 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 存储库中的最新版本。这是错误吗?

最佳答案

我不确定这是否是 neo4j-rest-client 上的问题比lucene-querybuilder .无论如何,您可以尝试使用参数 wildcard,例如:

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

然后告诉我它是否有效:-)

关于python - 在 neo4jrestclient 中构建 Lucene 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10857888/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com