46 lines
700 B
Plaintext
46 lines
700 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: "shirts",
|
|
query: {
|
|
bool: {
|
|
filter: {
|
|
term: {
|
|
brand: "gucci",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
aggs: {
|
|
colors: {
|
|
terms: {
|
|
field: "color",
|
|
},
|
|
},
|
|
color_red: {
|
|
filter: {
|
|
term: {
|
|
color: "red",
|
|
},
|
|
},
|
|
aggs: {
|
|
models: {
|
|
terms: {
|
|
field: "model",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
post_filter: {
|
|
term: {
|
|
color: "red",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|