as much I know, there is no direct way to query graph api for getting filtered feed though if you know the filter_key for a particular filter type of a user stream,then you can query the graph api with identifier filter.
so I think
1) you will need to make FQL query to get filter key, with something like:
SELECT filter_key FROM stream_filter WHERE uid=<uid> you can get all the avalable filters from a user's stream. please refer the doc here
2) now when you have your desired filter_key then you can request graph api to get the filterd feed with GET me/home?filter=filter_key . checkout the corresponding documentation here