24 lines
457 B
Plaintext
24 lines
457 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({
|
|
aggregations: {
|
|
forces: {
|
|
terms: {
|
|
field: "force",
|
|
},
|
|
aggregations: {
|
|
significant_crime_types: {
|
|
significant_terms: {
|
|
field: "crime_type",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|