Event member (FQL)

From Facebook Developers Wiki

Jump to: navigation, search


[edit] Description

The FQL event_member table. Query this table to return information about a user's status for an event.

To structure your query, use the table name (event_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 one of the columns marked with a * in the Indexable column of the table.

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 of the user for the event being queried.
* eid int The ID of the event being queried.
rsvp_status string The reply status of the user for the event being queried.


[edit] See Also