在Neo4J數據庫中,我需要找到一個具有3個命名節點(假設爲a,b,c)和其他一些非命名節點的(複雜)模式,但前提是沒有連接到a,b和c的節點(稱爲「x」)。 我想寫類似: MATCH (a:A)-<something>-(b:B)-<something>-(c:C)
WHERE NOT EXISTS ((a)--(x:X)--(b), (x)--(c))
RETURN a, b, c
,
我們通過在查詢語法連接字符串在代碼中創建查詢apostrope(')包含字符串要創建查詢的所有屬性在運行時添加一個節點。 The query is like this in the code where nodeLabel =String properties = JSONObject String query = "CREATE (n:" + nodeLabel + "{" + properti