如何在 Neo4j 中查找特定节点
如何使用 Neo4j API 查找特定节点。当我参考文档时,我得到了一些代码来获取所有节点但是,如果我有一个名为“XYZ”的节点,我想知道如何仅获取该特定节点。
how to find the particular node using the Neo4j API.When i refereed the docs i got some code to get all nodes However if i have a node called "XYZ" I would like to know how to obtain ONLY that particular node.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看索引服务,它允许您使用键值对为节点建立索引。一旦为节点建立了索引,您就可以查询图表并检索与给定键值匹配的节点。
Take a look at the Indexing Service which will allow you to index your nodes with key-value pairs. Once you've indexed your nodes you can query the graph and retrieve nodes which match a given key-value.
如果您的节点类型是 FirstName 并且其 ID 是“XYZ”,您可以这样做:
这将返回 ID =“XYZ”的所有节点
If your node type is a FirstName and its ID is "XYZ" you can do it with:
this will return all the nodes with ID = "XYZ"