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).