我在我的应用程序中使用了新的 Neo4j 3.5 全文搜索功能。目前我通过嵌入式 API 执行 Cypher 来做到这一点。
public Result search(String term, String index) {
// The query
String cypherQuery =
"CALL db.index.fulltext.queryNodes(\"" + index + "\", \"" + term + "\") YIELD node, score\n" +
"RETURN id(node), score";
// Execute query
return db.execute(cypherQuery);
}
我认为可以利用这种方法来注入 Cypher。有没有办法只使用 API 来执行全文搜索?
慕哥6287543
相关分类