25 lines
468 B
Plaintext
25 lines
468 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",
|
|
query: {
|
|
shape: {
|
|
geometry: {
|
|
shape: {
|
|
type: "envelope",
|
|
coordinates: [
|
|
[1355, 5355],
|
|
[1400, 5200],
|
|
],
|
|
},
|
|
relation: "within",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|