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

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);
----