Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法只看那个朋友有多少朋友?示例:我的朋友 - Sylvain(有 300 个朋友) - Olivier(有 145 个朋友)
谢谢,
This FQL query will get the friend_count field for all the loggedin user's friends.
friend_count
SELECT friend_count, uid FROM user WHERE uid IN(SELECT uid2 FROM friend WHERE uid1 = me())