Facebook FQL find all events that take place at a certain venue
问题 I am currently making an app that lists events in a city. I only want events that happen in certain venues to be included. Since the events are all created by many different promoters pages which change very often I thought the easiest way is to search for events whose venue matches my desired venue. How should I use FQL to query this or is it possible? I was thinking something along the lines of: SELECT eid,name,description FROM event WHERE venue.name='myVenue' but it wont work (I know the