In the event search, the query searches only by the Event Name:
sample http://graph.facebook.com/search?q=party&type=event
- Is there a way to query the Event Description? Or other fields ?
I tried to use until or since, but i get the same results
https://graph.facebook.com/search?q=party&type=event&until=today
https://graph.facebook.com/search?q=party&type=event&until=yesterday
- FQL only accept search by event ID
The search returns the id’s for all events returned in the search. Using https://graph.facebook.com/search?q=party&type=event&until=today&fields=id you can loop the id results to https://graph.facebook.com/eventid?access_token=yourapptoken to get array of the event which will include the description, name, image etc;
Live Sample for Page & Event Search here: http://shawnsspace.com/plugins/plugins.searcher.php
Refer to: http://developers.facebook.com/docs/reference/api/event/
Example Code: Assumes PHP-SDK 3.1.1 is installed on page.
Events https://graph.facebook.com/search?q=conference&type=event