Don´t use FQL if there is an easier way with the Graph API. In that case, it would be "/me/posts
". You can try it in the Graph API Explorer:
https://developers.facebook.com/tools/explorer?method=GET&path=me%2Fposts
Here´s a very good explanation about the posts connection and oter possibilities to get the feed and whatnot: What is the difference between feed, posts and statuses in Facebook Graph API?
See the answer with the highest voting:
The /posts api returns the posts created by the user (on her own wall
or the wall of a friend), and it may include any kind of content such
as shared links, checkins, photos and status updates.
Compare with the Facebook docs: https://developers.facebook.com/docs/reference/api/user/#posts
You can try other connections too but technically it should be exactly what you need. You also should not need more than the "read_stream" permission.
EDIT: However, i just tested it in the Graph API Explorer and only get the postings on my own wall, so i assume that there is a bug in the API.