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 a multiquery with 20 queries, everything works, but it returns the array in strange order: query1,query11,query12...........query19, query 20, query3, query4 etc..

What I should do to get the queries ordered like query1,query2, query3 etc.

{"name": "query1",
  "fql_result_set": [{}]},
{"name": "query10",
  "fql_result_set": [{}]},
{"name": "query11", 
  "fql_result_set": [{}]},

etc

share|improve this question

1 Answer

up vote 2 down vote accepted

seems like it is ordered by string name, so to make it ordered as you wish you should rename your queries like so:
query01
query02
query03
...
query10
query11
query12

hope this helps

share|improve this answer
I have a similar situation: query01, query02, query03. The response I get is in a arbitrary order: query01, query03 and then query02. This makes my life complicated as I need to get response[1] (I expect query02 not query03!) any ideas? – firepol Sep 29 '12 at 18:05

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.