| Steps to Reproduce: | 1. Given an access token with these permissions: user_about_me, user_activities, user_birthday, user_checkins, user_education_history, user_events, user_groups, user_hometown, user_interests, user_likes, user_location, user_notes, user_photos, user_questions, user_relationships, user_relationship_details, user_religion_politics, user_status, user_videos, user_website, user_work_history, email, read_stream 2. I run an FQL query like so: SELECT mutual_friend_count FROM user WHERE uid=NNNN (see "Related ID's for the actual user ID NNNN that shows this behavior). The result is: [{"mutual_friend_count": null}] 3. Then I run a Graph API query for mutual friends: https://graph.facebook.com/me/mutualfriends/NNNN which does return a bunch of records like (redacted): { "data": [ { "name": "Joe Smith", "id": "MMMMM" }, { "name": "Joe Smith2", "id": "PPPPPP" }, ] Is this a platform bug, and issue with this particular user or something else? |
|---|---|
| Expected Behavior: | I would expect the FQL query to return a non-null value for "mutual_friend_count", e.g. 2 in this example. This does happen for all of the friends, except this particular user record (see Related ID's), for which there is the inconsistency. |
| Actual Behavior: | I get a "mutual_friend_count" of null. |
| API/SDK: | FQL |