44 lines
816 B
Plaintext
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)
|
|
----
|
|
|