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

40 lines
766 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: "stackoverflow",
size: 0,
query: {
query_string: {
query: "tags:kibana",
},
},
runtime_mappings: {
"tags.hash": {
type: "long",
script: "emit(doc['tags'].hashCode())",
},
},
aggs: {
my_unbiased_sample: {
diversified_sampler: {
shard_size: 200,
max_docs_per_value: 3,
field: "tags.hash",
},
aggs: {
keywords: {
significant_terms: {
field: "tags",
exclude: ["kibana"],
},
},
},
},
},
});
console.log(response);
----