Why this query :
SELECT name, page_id from page WHERE strpos(lower(name),lower('coca')) >= 0
returning this error
"error_code": 604, "error_msg": "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 "
Yet in the Fql doc is write that:
page_id & name fields are Indexables
and why this Query works? I know that isn't on page table but
SELECT name
FROM user
WHERE uid IN (
SELECT uid2
FROM friend
WHERE uid1=me()
)
AND strpos(lower(name),"jo") >=0