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.

In the documentation it mention only AND and NOT. The reason I'm trying to use OR is to break a large results sets into multiple queries and make sure the queries doesn't fail.

For example: This query return one result:

SELECT post_id FROM stream WHERE (source_id = '100000462790227' ) AND strpos(lower(message),'sweet') >=0 AND (filter_key = 'others')

But when I added OR on the filter key I got empty results

SELECT post_id FROM stream WHERE (source_id = '100000462790227' ) AND strpos(lower(message),'sweet') >=0 AND (filter_key = 'others' OR filter_key = 'nf' )

Is it the OR, or do I do something else wrong?

share|improve this question

2 Answers

Here are my conclusions and observations:

First "OR" is supported by FQL.

One issue I saw "Graph API explorer" fails sometime while iOS SDK calls succeeded

If you limit the call with " LIMIT X" where X is under 100 you'll get an answer also on the second query. There are few posts on the issues related to large result set and what is the right limit (the one I read are all based on trial and error).

share|improve this answer

I finally understood what is the core issue. Stream table filter_key 'other' and 'owner' works only on one source_id. My original query had also OR on multiple source_id something like (source_id = '100000462790227' OR source_id = '12345670' ).

This combination return empty results!!

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.