17 lines
395 B
Plaintext
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);
|
|
----
|