50 lines
877 B
Plaintext
50 lines
877 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: {
|
|
is_published: true,
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "my-index-000001",
|
|
id: 2,
|
|
refresh: "true",
|
|
document: {
|
|
is_published: false,
|
|
},
|
|
});
|
|
console.log(response1);
|
|
|
|
const response2 = await client.search({
|
|
index: "my-index-000001",
|
|
aggs: {
|
|
publish_state: {
|
|
terms: {
|
|
field: "is_published",
|
|
},
|
|
},
|
|
},
|
|
sort: ["is_published"],
|
|
fields: [
|
|
{
|
|
field: "weight",
|
|
},
|
|
],
|
|
runtime_mappings: {
|
|
weight: {
|
|
type: "long",
|
|
script: "emit(doc['is_published'].value ? 10 : 0)",
|
|
},
|
|
},
|
|
});
|
|
console.log(response2);
|
|
----
|