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

18 lines
378 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"],
offsets: true,
payloads: true,
positions: true,
term_statistics: true,
field_statistics: true,
});
console.log(response);
----