Photo tag (FQL)
From Facebook Developers Wiki
[edit] Description
The FQL photo_tag table. Query this table to return information about a photo tag.
To structure your query, use the table name (photo_tag 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
| Indexable | Name | Type | Description | |
| * | pid | int | The ID of the photo being queried. | |
|---|---|---|---|---|
| * | subject | int | The user ID of the subject for the tag being queried. | |
| text | string | The content of the tag being queried. | ||
| xcoord | float | The leftmost edge of the tag's horizontal position, measured as a floating-point percentage from 0 to 100, from the left edge of the photo. | ||
| ycoord | float | The topmost edge of the tag's vertical position, measured as a floating-point percentage from 0 to 100, from the top edge of the photo. | ||
| created | int | The date that the tag being queried was created. |
