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

15 lines
346 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:
"GEOMETRYCOLLECTION (POINT (100.0 0.0), LINESTRING (101.0 0.0, 102.0 1.0))",
},
});
console.log(response);
----