// group people that know me by reverse relationship ("followback") MATCH (me:Person)<-[:KNOWS]-(o) WHERE me.name = "me" RETURN exists( (me)-[:KNOWS]->(o) ) as friend, collect(distinct o) as people;