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