32 lines
567 B
Plaintext
32 lines
567 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.index({
|
|
index: "index",
|
|
id: 1,
|
|
document: {
|
|
my_date: "2016-05-11T16:30:55.328Z",
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.search({
|
|
index: "index",
|
|
query: {
|
|
constant_score: {
|
|
filter: {
|
|
range: {
|
|
my_date: {
|
|
gte: "now-1h",
|
|
lte: "now",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response1);
|
|
----
|