24 lines
459 B
Plaintext
24 lines
459 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: {
|
|
function_score: {
|
|
query: {
|
|
match: {
|
|
message: "elasticsearch",
|
|
},
|
|
},
|
|
script_score: {
|
|
script: {
|
|
source: "Math.log(2 + doc['my-int'].value)",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|