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

23 lines
429 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",
aggs: {
"my-first-agg-name": {
terms: {
field: "my-field",
},
},
"my-second-agg-name": {
avg: {
field: "my-other-field",
},
},
},
});
console.log(response);
----