Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 418 Bytes

3f1fe5f5f99b98d0891f38003e10b636.asciidoc

File metadata and controls

12 lines (11 loc) · 418 Bytes
const response = await client.esql.asyncQuery({
  query:
    "\n    FROM library\n    | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n    | STATS MAX(page_count) BY year\n    | SORT year\n    | LIMIT 5\n  ",
  wait_for_completion_timeout: "2s",
});
console.log(response);