I'm using FQL.I want to retrieve tagged photos of my friends. And I'm using this Query.
SELECT pid,images FROM photo WHERE pid IN (
SELECT pid FROM photo_tag WHERE pid IN (
SELECT pid,images FROM photo WHERE aid IN (
SELECT aid FROM album WHERE owner IN
SELECT uid,username,pic FROM user WHERE uid IN
SELECT uid2 FROM friend WHERE uid1 = me())
))))
But It retrieves less than I've expected. I think that there's limit when retrieves photos from albums.
How do I retrieve more photos?