improved

Async Queries & Pagination

Async queries can now be utilized with a simple flag in the request body. The Pagination API is also now easily accessible by setting the max_initial_results parameter. See updated Async Queries and Pagination guides.

{
	 "sql": {
      "query": "SELECT * FROM foo",
    },
    "async": true
}
{
    "sql": {
      "query": "SELECT * FROM foo;",
    },
    "max_initial_results": 1000
}