Files
elasticsearch-js/docs/doc_examples/c4607ca79b2bcde39305d6f4f21cad37.asciidoc
2024-07-29 17:10:05 -05:00

13 lines
466 B
Plaintext

// This file is autogenerated, DO NOT EDIT
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
[source, js]
----
const response = await client.esql.query({
locale: "fr-FR",
query:
'\n ROW birth_date_string = "2023-01-15T00:00:00.000Z"\n | EVAL birth_date = date_parse(birth_date_string)\n | EVAL month_of_birth = DATE_FORMAT("MMMM",birth_date)\n | LIMIT 5\n ',
});
console.log(response);
----