29 lines
469 B
Plaintext
29 lines
469 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,
|
|
query: {
|
|
constant_score: {
|
|
filter: {
|
|
match: {
|
|
type: "hat",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
aggs: {
|
|
hat_prices: {
|
|
sum: {
|
|
field: "price",
|
|
missing: 100,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|