FQL:standard_friend_info
From Facebook Developer Wiki (FbDevWiki.com)
Query this table to determine whether two users are linked together as friends.
This query is indexable only if both user IDs are specified or if you query with an authorized user's user ID.
This table must only be used when there IS NOT an active session. This table is for looking up friend information of users for cron processing and should not be used for displaying information to users. Since this table allows access to friendship information of any of an app's authorized users it's information should not be revealed directly to users. Information from this table is for the app's internal use ONLY.
Columns
Highlighted rows are indexable / searchable and one is usually required in the WHERE portion of the query.
Name | Type | Description |
---|---|---|
uid1 | int | The user ID of the first user in the pair being queried. |
uid2 | int | The user ID of the second user in the pair being queried. |