I'm trying to fetch the list of friends that have at least one photo album. So far, the closest I got was using the following FQL:
SELECT uid, name, pic_square
FROM user
WHERE uid IN (
SELECT owner FROM album WHERE owner IN (
SELECT uid2 FROM friend WHERE uid1 = me()
)
)
That way I'm able to get some of my friends that have photo albums, but not all of them. If anyone knows if that is feasible using FQL please let me know, if not, which other ways do we have?