33 lines
608 B
Plaintext
33 lines
608 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({
|
|
query: {
|
|
match: {
|
|
message: {
|
|
operator: "or",
|
|
query: "the quick brown",
|
|
},
|
|
},
|
|
},
|
|
rescore: {
|
|
window_size: 50,
|
|
query: {
|
|
rescore_query: {
|
|
match_phrase: {
|
|
message: {
|
|
query: "the quick brown",
|
|
slop: 2,
|
|
},
|
|
},
|
|
},
|
|
query_weight: 0.7,
|
|
rescore_query_weight: 1.2,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|