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 have to write an FQL query to retrieve all the posts of a specific user which contain tags. I've tried with:

SELECT post_id, source_id, target_id, actor_id, message
FROM stream
WHERE
    source_id = [tagPublisherId]
    AND actor_id = [tagPublisherId]
    AND tagged_ids != NULL

but it doesn't work because "NULL is not a member of the stream table". How can I check for a not empty array type in a FQL query?

share|improve this question
Try using just AND tagged_ids – FQL treats an “empty” value, 0 and NULL as false and everything else as true. – CBroe Nov 24 '12 at 17:09
@CBroe thank you for your reply. It seems to work but it retrieves only posts written at most a week ago. I've also tried with "created_time >= [aYearAgo] LIMIT 100". – Maverik Nov 26 '12 at 8:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.