| Steps to Reproduce: | 1. Navigate to the graph explorer at: https://developers.facebook.com/tools/explorer 2. Submit the following FQL query, and note that all album IDs are returned: SELECT aid FROM album WHERE owner = me() 3. Now submit the following multi-query (which utilizes the results of the previous query) and note that photos are only being returned from one album: SELECT object_id, src_big_height, src_big_width, src_big, created, like_info, caption, aid FROM photo WHERE aid IN (SELECT aid FROM album WHERE owner = me()) ORDER BY created DESC |
|---|---|
| Expected Behavior: | Photos from all albums are returned |
| Actual Behavior: | Photos are only being returned from the last album returned by the aid query. |
| API/SDK: | FQL |
| App IDs: |
|