I want to use neo4j to manage relationship among users.
How can I get mutual friends using it?
|
feedback
|
|
The easiest way would be to use the shortest path algorithm of length 2, with the two users, across FRIEND_OF relationships. Those are the paths that connect the two users via exactly one friend hop.
| |||
|
feedback
|