I am trying to get all the photos that my app has posted to a user's stream using FQL. I realize I could do this by first performing the following query:
SELECT attachment FROM stream WHERE source_id = me() AND app_id = <my_app_id>
and then parsing the attachments locally to determine their type. But I'm wondering, is there any way to include the attachment type in my query so that only attachments with photos are returned?