Files
elasticsearch-js/docs/doc_examples/6baf72c04d48cb04c2f8be609ff3b3b5.asciidoc
2025-02-03 12:48:17 -06:00

24 lines
458 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: "test-index",
query: {
match: {
my_semantic_field: "Which country is Paris in?",
},
},
highlight: {
fields: {
my_semantic_field: {
number_of_fragments: 2,
order: "score",
},
},
},
});
console.log(response);
----