如何在 noe4j 子图上进行基于索引的搜索?
有什么方法可以在 neo4j 中对子图进行基于索引的搜索吗?
在Cypher中,我们首先从索引中选择节点,然后与图关系或属性进行匹配,我想要这样的东西,首先我选择一个子图(基于关系),然后在索引中搜索该子图节点(原始索引的子索引) )。
Is there any way to do index based search on sub-graph in neo4j?
In Cypher we first select nodes from index and then match with the graph relationships or properties, I want something like first I select a sub-graph(based on relationships) and then search in index for that subgraph nodes(sub index of the original index).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有办法做到这一点。索引无法将您的搜索限制到特定的子图。您最好在 John 查询的 where 子句中添加正则表达式。
There is no way to do this. The index has no way of limiting your search to a particular subgraph. You're probably better off putting a regular expression in your where clause for your John query.