Files
elasticsearch-js/docs/doc_examples/b4a0d0ed512dffc10ee53bca2feca49b.asciidoc
2020-05-15 10:34:39 +02:00

44 lines
816 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({
body: {
query: {
function_score: {
query: {
match_all: {}
},
boost: '5',
functions: [
{
filter: {
match: {
test: 'bar'
}
},
random_score: {},
weight: 23
},
{
filter: {
match: {
test: 'cat'
}
},
weight: 42
}
],
max_boost: 42,
score_mode: 'max',
boost_mode: 'multiply',
min_score: 42
}
}
}
})
console.log(response)
----