(cherry picked from commit f737290d10)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
25 lines
414 B
Plaintext
25 lines
414 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: "sales",
|
|
size: 0,
|
|
filter_path: "aggregations",
|
|
query: {
|
|
term: {
|
|
type: "t-shirt",
|
|
},
|
|
},
|
|
aggs: {
|
|
avg_price: {
|
|
avg: {
|
|
field: "price",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|