23 lines
416 B
Plaintext
23 lines
416 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({
|
|
index: "index",
|
|
query: {
|
|
constant_score: {
|
|
filter: {
|
|
range: {
|
|
my_date: {
|
|
gte: "now-1h/m",
|
|
lte: "now/m",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|