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

26 lines
498 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: "polygon",
orientation: "clockwise",
coordinates: [
[
[1000, 1000],
[1000, 1001],
[1001, 1001],
[1001, 1000],
[1000, 1000],
],
],
},
},
});
console.log(response);
----