19 lines
390 B
Plaintext
19 lines
390 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",
|
|
doc: {
|
|
fullname: "John Doe",
|
|
text: "test test test",
|
|
},
|
|
fields: ["fullname"],
|
|
per_field_analyzer: {
|
|
fullname: "keyword",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|