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

29 lines
547 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: "GeometryCollection",
geometries: [
{
type: "Point",
coordinates: [100, 0],
},
{
type: "LineString",
coordinates: [
[101, 0],
[102, 1],
],
},
],
},
},
});
console.log(response);
----