9
我正在使用Neo4j 2.0並使用以下查詢來查找特定節點的特定關係的數量。如何計算Neo4j中的關係數
我要檢查到特定節點PERSON名爲「生命」的數量關係。
我的查詢是:顯示
match (p:PERSON)-[r:LIVES]->(u:CITY) where count(r)>1
return count(p);
的錯誤是:
SyntaxException: Invalid use of aggregating function count(...)
我應該如何糾正?