Using JS SDK for facebook, is there a way to count number of friends (of currently logged in user) that are also using my application ?? I found this query online
SELECT uid FROM user
WHERE user.uid IN (SELECT uid2 FROM friend WHERE uid1 = ?)
AND is_app_user = 1
But I don't understand it, and I don't know what to put instead of '?'
Thanks in advance!
