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

18 lines
319 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({
aggs: {
tags: {
terms: {
field: "tags",
min_doc_count: 10,
},
},
},
});
console.log(response);
----