Hi everyone,
I'm trying to get the result of the following query :
match (n:Student)-[r:WORKS_WITH]->(m:Tutor)
with collect(n.name) as studs,m
return studs, collect(m.name) as tutors
I have some students who works with some tutors. 1 or more student...