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

14 lines
321 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: "LINESTRING (-77.03653 38.897676, -77.009051 38.889939)",
},
});
console.log(response);
----