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

15 lines
363 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:
"POLYGON ((1000.0 -1001.0, 1001.0 -1001.0, 1001.0 -1000.0, 1000.0 -1000.0, 1000.0 -1001.0))",
},
});
console.log(response);
----