Is it possible to limit/filter FB Graph (page) requests to :
- The category (of the page)? (for instance &category=restaurant)
- The number of likes it has (minimum threshold)
- Whether it has certain properties (for instance it must have a location.city or maybe filter where location.city == “San Jose”)
and is it possible to order results (for instance by number of likes descending?)
I’m using this as a starting point:
http://graph.facebook.com/search?q=california&type=page&fields=id,name,location,category
I’m not sure on the order functionality but here you can add a limit parameter like this one:
http://graph.facebook.com/search?q=california&type=page&fields=id,name,location,category&limit=2