In the query below how do I find the average age of users present in the path:
start begin=node:Nodes(Name="User_2"), end=node:Nodes(Name="User_32")
match p = begin--()--end
return extract(n in nodes(p): n.Age);
|
In the query below how do I find the average age of users present in the path:
|
||||
|
|
|
in cypher 1.8 just fixing your first query:
i believe, however, that you ask for all users from User_2 to User_32:
but in last case, if you are asking for all users in the path between User1 and User32:
edit: i just found that you can replace the sum(n.Age) / count(n); simply with avg(n.Age) |
|||||
|
|
So, in 1.9 you can now do this with
|
|||
|
|