I have a list of users who uses my Facebook application (id1, id2, id3, ... idn).
I want to know what events my users are attending and how much of my users are in this event using a FQL command.
I tryed to use:
SELECT eid, COUNT(eid) AS users
FROM event_member
WHERE rsvp_status = 'attending'
AND uid IN (id1, id2, id3, ... idn)
but FQL doesn't support the COUNT command, anyone can help?
I'm using Java to make this collector.