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 working on FQL to retrieve the friends count of a particular user.

When i use the query Select friend_count from user where uid = me() I get a number which is different from the count i get from this query i.e select uid2 from friend where uid1= me()

Why is an ambiguity here?

Does friend_count also includes pending requests then?

If yes how can retrieve those UIDs?

Select friend_count from user where uid = me() returned me X and select uid2 from friend where uid1= me() returned me Y.

My X is greater than Y which makes me think if X includes the pendin g requests but i am not able to find (X-Y).

share|improve this question
Perhaps you are hitting a query limit on the second one ? – Aviram Segal Jan 3 at 13:58
@Aviram Nope. The first one returned me 948 and the when i manually counted the list of uids returned by second its 906. So I thought the 42 will include either the subscribers or pending request. Now after investigating further i doubt these are the uids of those who had deactivated their profile because the user table doesnt have a matching name to their UIDs. Am i correct? – user1095279 Jan 4 at 2:22

marked as duplicate by Igy, Peter O., Bill the Lizard Mar 25 at 12: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

The difference is that friend_count returns the total number of friends, regardless of their privacy settings.

Counting the results of SELECT uid2 FROM friend WHERE uid1= me() may be lower because users who have either restricted their visibility in Settings->Apps->Apps Others Use or have turned off Platform Apps will never be returned in FQL or Graph API queries.

share|improve this answer

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