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

20 lines
393 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: "LineString",
coordinates: [
[-77.03653, 38.897676],
[-77.009051, 38.889939],
],
},
},
});
console.log(response);
----