APOC/Neo4j:匹配之间关系的可变长度

发布于 2025-01-12 10:26:05 字数 1052 浏览 0 评论 0原文

例如,如果我想匹配这样的模式:

MATCH (:Person)-[:A]->(:Movie)-[:B*]->(:Movie)-[:C]->(:Person)

其中第一个和最后一个关系的长度([:A]和[:C])是固定的(它们的长度都是1),但中间关系的长度([:C]) B]) 是可变的。

那么以下路径都将匹配此模式:

(:Person)-[:A]->(:Movie)-[:B]->(:Movie)-[:C]->(:Person)

(:Person)-[:A]->(:Movie)-[:B]->()-[:B]->(:Movie)-[:C]->(:Person)

我想知道是否可以仅使用一个 APOC 路径扩展器 过程(例如 apoc.path.expandConfig)并使用序列来实现这一点? (虽然 APOC 似乎不支持之间关系的可变长度)

我知道我可以基于此 帖子 但我的目标是一次返回整个路径,包括这两个 (:Movie) 节点之间的关系和节点。

编辑:这个Cypher查询可以输出我想要的内容,但我想 比较 Cypher 和 APOC 之间的性能(用于研究 目的)。这就是为什么我要问使用 APOC 的等效方法 这个查询。

For example, if I want to match a pattern like this:

MATCH (:Person)-[:A]->(:Movie)-[:B*]->(:Movie)-[:C]->(:Person)

where the first and last relationship's length ([:A] and [:C]) is fixed (they are both with length 1), but the middle relationship's length ([:B]) is variable.

Then the following paths will both match this pattern:

(:Person)-[:A]->(:Movie)-[:B]->(:Movie)-[:C]->(:Person)

(:Person)-[:A]->(:Movie)-[:B]->()-[:B]->(:Movie)-[:C]->(:Person)

I'm wondering if it's possible to use only one APOC path expander procedure (say apoc.path.expandConfig) and use the sequence to achieve this? (It seems that APOC does not support variable length of relationships in between though)

I know that I could create a new relationship between these two (:Movie) nodes based on this post
but my goal is to return the whole path all at once, including the relationship and nodes between these two (:Movie) nodes.

Edited: This Cypher query can output what I want, but I want to
compare the performance between Cypher and APOC (for research
purposes). That's why I'm asking the equivalent way of using APOC for
this query.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文