41 lines
753 B
Plaintext
41 lines
753 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: "my-index-000001",
|
|
id: 1,
|
|
refresh: "true",
|
|
document: {
|
|
date: "2015-10-01T05:30:00Z",
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "my-index-000001",
|
|
id: 2,
|
|
refresh: "true",
|
|
document: {
|
|
date: "2015-10-01T06:30:00Z",
|
|
},
|
|
});
|
|
console.log(response1);
|
|
|
|
const response2 = await client.search({
|
|
index: "my-index-000001",
|
|
size: 0,
|
|
aggs: {
|
|
by_day: {
|
|
date_histogram: {
|
|
field: "date",
|
|
calendar_interval: "day",
|
|
offset: "+6h",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response2);
|
|
----
|