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

17 lines
395 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: "my-index-000001",
id: 1,
fields: ["text", "some_field_without_term_vectors"],
offsets: true,
positions: true,
term_statistics: true,
field_statistics: true,
});
console.log(response);
----