32 lines
613 B
Plaintext
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);
|
|
----
|