It must be, but I can't figure out how to do this.
In this FQL query, you will get information about all places near a known location:
SELECT name, page_id, categories, description, general_info FROM page WHERE page_id IN (SELECT page_id FROM place WHERE distance(latitude, longitude, "37.76", "-122.427") < 1000 )
The categories field is an array with id and name values. Looking at these results, there is a series of category names such as "Restaurant": "Italian Restaurant", "Bar / Restaurant", etc.
What I cannot find is a way to add a WHERE categories to it that returns data.
source share