25 lines
500 B
Plaintext
25 lines
500 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.renderSearchTemplate({
|
|
source: '{ "query": { "bool": { "must": {{#toJson}}clauses{{/toJson}} }}}',
|
|
params: {
|
|
clauses: [
|
|
{
|
|
term: {
|
|
"user.id": "kimchy",
|
|
},
|
|
},
|
|
{
|
|
term: {
|
|
"url.domain": "example.com",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|