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

32 lines
613 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: "example_points",
query: {
bool: {
must: {
match_all: {},
},
filter: {
geo_shape: {
location: {
shape: {
type: "envelope",
coordinates: [
[13, 53],
[14, 52],
],
},
relation: "intersects",
},
},
},
},
},
});
console.log(response);
----