gpt4 book ai didi

java - 如何在 cypher 中搜索否定关系

转载 作者:行者123 更新时间:2023-11-30 05:47:37 26 4
gpt4 key购买 nike

我试图找到一种关系,其中一个实体未映射到特定值,我尝试使用 WHERE NOT EXISTS 语句但无济于事。

我试图找到 a 与 b 匹配的关系。但当 b 的属性值为“test”时,我也不将 a 与 b 匹配

MATCH  (a)-[hasAttribute]->(b:Attribute)
WHERE NOT EXISTS a.code = "test"
return *
LIMIT 10

我需要找到 a 与 b 匹配且 b 没有“test”值的关系

最佳答案

这就是你想要的:

MATCH  (a)-[hasAttribute]->(b:Attribute)
WHERE a.code != "test"
return *
LIMIT 10

关于java - 如何在 cypher 中搜索否定关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54573262/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com