Possible Duplicate:
Graph api and equivalent FQL method give different results?
I'd like to query an event on facebook filtered by time and location.
According to the graph api, an event has a field called venue, which is an object that has latitude and longitude.
http://developers.facebook.com/docs/reference/api/event/
However, according to the facebook query language, the event table has a field called venue, which is a string.
http://developers.facebook.com/docs/reference/fql/event/
There doesn't seem to be a venue table of which the venue string could be a foreign key.
How could I get a list of venues near a coordinate with FQL?