JQuery.getJSON(...) uses GET method. Since my query is recursive and very long, it seems not working with GET method if depth of the recursive query is very long. So, I tried Jquery.post(...) like the following: jQuery.post("
http://api.freebase.com/api/service/mqlread?callback=?", {query: JSON.stringify(envelope)}, callback, 'json'); but, it is not working. am I doing something wrong? any suggestion or solution? messy source code is available here:
https://graphics.stanford.edu/~namwkim/freebase/js/genealogy.js
** if there is no workaround, I might consider decomposing query into separate queries.
Thanks!