I'm having issues getting an FQL query to work with an IN clause for multiple pages. The pages are publicly accessible - so I'm not sure if there a permission issue or not
Ex:
SELECT post_id, source_id, message FROM stream WHERE source_id in (40796308305, 56381779049) order by updated_time;
This is using the graph api explorer with all the permissions enabled. I will either get no data, or just simply a few posts from the last graphid specified in the IN clause.
Thoughts? This doesn't seem to be well documented in the FQL documentation.
source_id. You'll probably need to do this as a series of queries. – cpilko Jul 6 '12 at 16:17