Note (FQL)
From Facebook Developer Wiki
Description
The FQL notes table. Query this table to return the notes the current user has written.
To structure your query, use the table name (note 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.
Columns
| Indexable | Name | Type | Description | |
| * | uid | int | The user ID of the current user. | |
|---|---|---|---|---|
| note_id | int | The unique identifier for the note. | ||
| created_time | time | The time the user created the note. | ||
| updated_time | time | The most recent time the user edited the note. | ||
| content | string | The body of the note. | ||
| title | string | The title of the note. |
