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

23 lines
448 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: "index",
query: {
script_score: {
query: {
match: {
body: "elasticsearch",
},
},
script: {
source: "_score * saturation(doc['pagerank'].value, 10)",
},
},
},
});
console.log(response);
----