I need to get facebook page data in bulk. I am trying to use minor then (<) and greater then (>) operators in fql query but this doesn't seem to be working. facebook is giving no indexable column in the query error. i.e.
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
I am trying to run this query:
select page_id, name, website from page where page_id<1000000
page_id given in where clause by me is an indexable column mentioned in the fql documentation. The problem is with the operator i think.