I'm executing this FQL query to search the wall posts on my own timeline:
https://graph.facebook.com/fql?q=SELECT+message+FROM+stream+WHERE+source_id=me()%20AND+strpos(message,'metallica')+>0&access_token=XXXX
(Sorry for the link, it didn't appear nice)
Is this not supposed to return all status updates I have that includes the string "metallica"? Am I doing something wrong? The older posts (1-2 years old) don't return. Is this because:
Each query of the stream table is limited to the previous 30 days or 50 posts, whichever is greater, however you can use time-specific fields such as created_time along with FQL operators (such as < or >) to retrieve a much greater range of posts.