Page fan (FQL)

From Facebook Developers Wiki

Jump to: navigation, search


[edit] Description

The FQL page_fan table. Query this table to return information about the fan of a Facebook Page.

To structure your query, use the table name (page_fan 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 uid 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.


[edit] Columns

IndexableNameTypeDescription
* uid int The user ID for the fan of the Page being queried.
page_id int The ID of the Page being queried.
type string The type of Page being queried.


[edit] See Also