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

21 lines
396 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.search({
index: "my-index-000001",
size: 0,
aggs: {
by_day: {
auto_date_histogram: {
field: "date",
buckets: 3,
time_zone: "-01:00",
},
},
},
});
console.log(response);
----