使用 Neo4j Restful API 在创建之前命名资源

发布于 2024-11-29 17:16:21 字数 244 浏览 0 评论 0 原文

这适用于了解 REST 和 Neo4j 的人员。 在 Neo4j 中创建节点之前是否可以命名节点? 典型的 Restful 事情是,您创建一个 URI“XXX/db/data/node/mynode”,并且您希望使用此标识符创建一个节点(如果此时不存在)。 对于我目前为止一直在研究(和测试)的所有内容,答案是:“不,这是不可能的,neo4j 总是会自动为创建的节点提供 id,并尝试创建 URI 并使用 POST 来因为它的创建将导致 405"

提前致谢。

This is for people with knowledge on REST and Neo4j.
Is it possible to name a node before creating it in Neo4j ?
Typical Restful thing, you create a URI "XXX/db/data/node/mynode" and you want to create a node with this identifier if it is not existent in the moment.
For all that I have been researching (and testing) to the present moment, the answer is : "no it is not possible, neo4j will just always automatically give ids to the created nodes and the attempt to do create a URI and use POST to cause its creation will result in 405"

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

心碎无痕… 2024-12-06 17:16:21

没错,你不能设置节点的 id。您可以做的就是添加其他类型的 id 作为属性,请参阅 创建具有属性的节点。只需确保它自动索引,然后您就可以查询该索引的精确匹配

That's correct, you can't set the id of a node. What you can do is to add some other kind of id as a property, see create node with properties. Just make sure it's indexed automatically and then you can query that index for exact matches.

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