5.5. Basic friend finding based on social neighborhood

Imagine an example graph like the following one:

Figure 5.3. Graph

To find out the friends of Joe’s friends that are not already his friends, the query looks like this:

Query. 

MATCH (joe { name: 'Joe' })-[:knows*2..2]-(friend_of_friend)
WHERE NOT (joe)-[:knows]-(friend_of_friend)
RETURN friend_of_friend.name, COUNT(*)
ORDER BY COUNT(*) DESC , friend_of_friend.name

This returns a list of friends-of-friends ordered by the number of connections to them, and secondly by their name.

Result

friend_of_friend.nameCOUNT(*)
3 rows

"Ian"

2

"Derrick"

1

"Jill"

1

Try this query live. create (_0 {`name`:"Bill"}) create (_1 {`name`:"Sara"}) create (_2 {`name`:"Derrick"}) create (_3 {`name`:"Ian"}) create (_4 {`name`:"Jill"}) create (_5 {`name`:"Joe"}) create _0-[:`knows`]->_2 create _0-[:`knows`]->_3 create _1-[:`knows`]->_0 create _1-[:`knows`]->_3 create _1-[:`knows`]->_4 create _5-[:`knows`]->_0 create _5-[:`knows`]->_1 match (joe {name: 'Joe'})-[:knows*2..2]-(friend_of_friend) where not (joe)-[:knows]-(friend_of_friend) return friend_of_friend.name, COUNT(*) order by COUNT(*) DESC, friend_of_friend.name