It says in the FQL user Documentation that there are 4 indexable fields (marked with *):
- name
- third_party_id
- uid
- username
But when I perform a query like this:
SELECT uid
FROM user
WHERE name = "Mark Zuckerberg"
I get an error:
{
"error": {
"message": "Your statement is not indexable. The WHERE clause must contain
an indexable column. Such columns are marked with * in the
tables linked from
http://developers.facebook.com/docs/reference/fql ",
"type": "NoIndexFunctionException",
"code": 604
}
}
What am I missing here? Is this a bug? How can I filter an FQL query on the user table by name?
