如何在 Neo4j 中查找特定节点

发布于 2024-10-09 01:35:50 字数 87 浏览 4 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长梦不多时 2024-10-16 01:35:50

查看索引服务,它允许您使用键值对为节点建立索引。一旦为节点建立了索引,您就可以查询图表并检索与给定键值匹配的节点。

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.

还如梦归 2024-10-16 01:35:50

如果您的节点类型是 FirstName 并且其 ID 是“XYZ”,您可以这样做:

MATCH(n:FirstName {ID: 'XYZ'}) return n

这将返回 ID =“XYZ”的所有节点

If your node type is a FirstName and its ID is "XYZ" you can do it with:

MATCH(n:FirstName {ID: 'XYZ'}) return n

this will return all the nodes with ID = "XYZ"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文