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

22 lines
415 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: "geohex2shape",
document: {
geocell: "811fbffffffffff",
},
});
console.log(response);
const response1 = await client.get({
index: "geocells",
id: 1,
});
console.log(response1);
----