Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

I am trying to sort my friends by the number of mutual friends we have. I tried getting the number of mutual friends one by one and creating an id->no_of_mutual_friend key value pair but that just takes way too long, because I have to call the facebook API over a 1000 times.

Is there an easier way to do this by using FQL?

share|improve this question
Not a duplicate, Cthulhu; they're very different questions. – Mark Amery Oct 20 '12 at 0:09

marked as duplicate by DarkCthulhu, Igy, Bill the Lizard Mar 29 at 11:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

This do what you need?

SELECT uid, mutual_friend_count
FROM user
WHERE uid IN 
    (SELECT uid1 
     FROM friend 
     WHERE uid2 = me()) 
ORDER BY mutual_friend_count DESC
share|improve this answer
yes thank you, much more faster – Gorkem Yurtseven Oct 20 '12 at 23:57

Not the answer you're looking for? Browse other questions tagged or ask your own question.