Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.