I'm creating an app where user will be able to select some of his friends then the app will do some job on the selected friends.
My question is =->
Can i directly write this FQL
SELECT uid, name, pic_square FROM user WHERE uid = $friendUID
Or need to write something like
SELECT uid, name, pic_square FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) and UID = = $friendUID
