Page admin (FQL)

From Facebook Developer Wiki

Jump to: navigation, search


Description

The FQL page_admin table. Query this table to return information about the admin of a Facebook Page.

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

Columns

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

See Also

reference