I am trying the get all my facebook friends that are attending to a specific event.
select uid, rsvp_status from event_member where uid IN (SELECT uid2 FROM friend WHERE uid1=me()) AND eid=100609746772815 and rsvp_status="attending";
What do I do wrong?