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

25 lines
465 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: {
type: "fvh",
},
},
},
});
console.log(response);
----