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

25 lines
482 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: {
bool: {
filter: {
script: {
script: {
source: "doc['num1'].value > params.param1",
lang: "painless",
params: {
param1: 5,
},
},
},
},
},
},
});
console.log(response);
----