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

26 lines
512 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.search({
index: "index2",
query: {
query_string: {
query: "running with scissors",
fields: ["comment", "comment.english"],
},
},
highlight: {
order: "score",
fields: {
"comment.english": {
type: "fvh",
matched_fields: ["comment"],
},
},
},
});
console.log(response);
----