FQL:friendlist
From Facebook Developer Wiki (FbDevWiki.com)
Query this table to return any friend lists owned by the specified user. You can run this query only when the owner
is set to the logged-in user. You can store flid
's, but you cannot expose this information to anyone but the logged in user, as it is private.
You must index this query by owner
.
Columns
Highlighted rows are indexable / searchable and one is usually required in the WHERE portion of the query.
Name | Type | Description |
---|---|---|
owner | int | The user ID of the user who created the friend list. |
flid | int | The ID of the friend list. |
name | string | The name of the friend list. |
Examples
SELECT flid, name FROM friendlist WHERE owner=204686