30 lines
512 B
Plaintext
30 lines
512 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: {
|
|
dis_max: {
|
|
queries: [
|
|
{
|
|
match: {
|
|
subject: 'brown fox'
|
|
}
|
|
},
|
|
{
|
|
match: {
|
|
message: 'brown fox'
|
|
}
|
|
}
|
|
],
|
|
tie_breaker: 0.3
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|