Friendlist member (FQL)
From Facebook Developer Wiki
Contents |
Description
The FQL friendlist_member table. Query this table to determine which users are members of a friend list. You can run this query only when the flid is owned by the logged-in user. You cannot expose this information to anyone but the logged in user, as it is private. In addition, you cannot store flids.
To structure your query, use the table name (friendlist_member in this case) in the FROM clause. The items in the Name column correspond to columns in the table that can be referenced in the SELECT and WHERE clauses.
In order to make your query indexable, the WHERE in your query should contain an = or IN clause for the flid column.
The See Also section lists API functions that work on similar data; their documentation pages contain additional information about the contents of the column and example FQL queries.
Columns
| Indexable | Name | Type | Description | |
| * | flid | int | The ID of the friend list. | |
|---|---|---|---|---|
| uid | int | The user ID of the friend list member. |
