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

43 lines
842 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.index({
index: "example",
document: {
location: {
type: "multipolygon",
coordinates: [
[
[
[1002, 200],
[1003, 200],
[1003, 300],
[1002, 300],
[1002, 200],
],
],
[
[
[1000, 200],
[1001, 100],
[1001, 100],
[1000, 100],
[1000, 100],
],
[
[1000.2, 200.2],
[1000.8, 100.2],
[1000.8, 100.8],
[1000.2, 100.8],
[1000.2, 100.2],
],
],
],
},
},
});
console.log(response);
----