22 lines
387 B
Plaintext
22 lines
387 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: {
|
|
range: {
|
|
timestamp: {
|
|
time_zone: '+01:00',
|
|
gte: '2015-01-01 00:00:00',
|
|
lte: 'now'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|