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

24 lines
440 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.mtermvectors({
docs: [
{
_index: "my-index-000001",
doc: {
message: "test test test",
},
},
{
_index: "my-index-000001",
doc: {
message: "Another test ...",
},
},
],
});
console.log(response);
----