Looking for the fql equivalente to the search below. Looking to get all checkins by friends and the name of the place.
https://graph.facebook.com/search?type=checkin&access_token=...
EDIT
temp_time = 2 weeks ago
If below, gets me the the page ID(place) and Author ID (user) of checkins
SELECT author_uid, page_id FROM checkin WHERE timestamp > #{temp_time} AND author_uid IN(SELECT uid2 FROM friend WHERE uid1=me())
What would be the sql or fql statement to include the user name and place details with the response. Ideally, would be user with the place detail in it.