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 attempting to execute a semi-advanced query using Facebook's FQL.

SELECT message FROM stream WHERE actor_id= userid_1 AND source_id=userid_2 OR actor_id=userid_2 AND source_id=userid_1

Everytime I run it though, it comes up blank, even though there are posts between the two users on their walls, so this possible or do I need to use some sort of alternative method?

share|improve this question

1 Answer

It should work with the combination. Why dont you try with enclosing proper brackets like

SELECT message FROM stream WHERE actor_id= userid_1 AND (source_id=userid_2 OR actor_id=userid_2) AND source_id=userid_1

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.