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

14 lines
289 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.termvectors({
index: "text_payloads",
id: 1,
fields: ["text"],
payloads: true,
});
console.log(response);
----