2017-04-07 65 views
0

我有兩種類型的節點:(n:type1) - [r] - >(m:type2)。 type1節點有一個名爲「True」或「False」的屬性。我想要一個查詢,爲類型2的每個節點,從與其相關的節點給出True和False的總和。帶有密碼的雙向製表,neo4j

我可以分兩次做到這一點:

match (n:type1)-[r]->(m:type2) where n.called return m.id, count(n); 
match (n:type1)-[r]->(m:type2) where not n.called return m.id, count(n); 

但是我想能夠做到這一點的一個查詢。

回答

1

試試這個

match (n:type1)-[r]->(m:type2) 
return m.id, n.called, count(n); 
+0

感謝。像魅力一樣工作。 – Placidia