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 trying to use an FQL Multiquery to obtain my most recent Facebook question and options with one query using an http request.

So far the query I tried to use is:

SELECT name, votes FROM question_option WHERE question_id IN 
   (SELECT id, question FROM question WHERE owner = me() 
   ORDER BY created_time DESC LIMIT 1)

Unfortunately this only returns the name and votes from the outer query and not the question text from the inner one. Is there a way to retrieve all 3 without making 2 queries?

share|improve this question

1 Answer

up vote 1 down vote accepted

What you posted isn't a multiquery. A proper multiquery should get you what you want:

{
'question_detail':
  'SELECT id, question FROM question WHERE owner = me() 
     ORDER BY created_time DESC LIMIT 1',
'question_answers':
   'SELECT name, votes FROM question_option WHERE question_id IN
      (SELECT id FROM #question_detail)'
 }

You'll need to get rid of the whitespace for this to properly execute.

share|improve this answer
I'm making an HTTP request using just a URL, how would a multiquery like this translate to a valid URL? – John McDonnell Jan 17 at 22:59
It's pretty well explained in the facebook developer guides here. Your query URL is like: https://graph.facebook.com/fql?q={"question_detail":"SELECT+id,+question+FROM+q‌​uestion+WHERE+owner=me()+ORDER+BY+created_time+DESC+LIMIT+1","question_answers":"‌​SELECT+name,+votes+FROM+question_option+WHERE+question_id+IN+(SELECT+id+FROM+#que‌​stion_detail)"} – Austin Mullins Jan 17 at 23:07
Yes I tried something very similar to that when I first tried a multiquery, unfortunately with the same result as your example. Parser error: unexpected '{' at position 0. – John McDonnell Jan 17 at 23:34
Yet strangely if I rewrite the #question_detail as the original query it works fine, so thank you. – John McDonnell Jan 18 at 0:02
You've got to really watch the syntax here. The Facebook JSON parser is not forgiving at all. One small mistake and you'll get the Unexpected { error. – cpilko Jan 18 at 0:53

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.