27 lines
468 B
Plaintext
27 lines
468 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: {
|
|
dis_max: {
|
|
queries: [
|
|
{
|
|
term: {
|
|
title: "Quick pets",
|
|
},
|
|
},
|
|
{
|
|
term: {
|
|
body: "Quick pets",
|
|
},
|
|
},
|
|
],
|
|
tie_breaker: 0.7,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|