Auto-generated code for 8.16 (#2549)

This commit is contained in:
Elastic Machine
2025-01-07 18:52:07 +00:00
committed by GitHub
parent 6fb0f426c3
commit f9a5a18a71
38 changed files with 1260 additions and 298 deletions

View File

@ -0,0 +1,24 @@
// 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.search({
index: "my-index-000001",
query: {
prefix: {
full_name: {
value: "ki",
},
},
},
highlight: {
fields: {
full_name: {
matched_fields: ["full_name._index_prefix"],
},
},
},
});
console.log(response);
----