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

22 lines
406 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: "geocells",
id: 1,
pipeline: "geotile2shape",
document: {
geocell: "4/8/5",
},
});
console.log(response);
const response1 = await client.get({
index: "geocells",
id: 1,
});
console.log(response1);
----