16 lines
485 B
Plaintext
16 lines
485 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": { "filter": [ {{#year_scope}} { "range": { "@timestamp": { "gte": "now-1y/d", "lt": "now/d" } } }, {{/year_scope}} { "term": { "user.id": "{{user_id}}" }}]}}}',
|
|
params: {
|
|
year_scope: false,
|
|
user_id: "kimchy",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|