Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm messing around with FQL, and I have this query:

SELECT created_time, attachment, message FROM stream  WHERE source_id = me() LIMIT 1000

which returns 1000 results, most not relevant to me. I'd like to filter, for example, on MESSAGE IS NOT NULL. Is that (or something equivalent) possible with FQL?

share|improve this question

2 Answers

Just adding AND message to the WHERE clause works as well – an empty value is considered “false” by FQL.

share|improve this answer

Add type to the SELECT clause and in the WHERE clause add AND type > 0.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.