35 lines
629 B
Plaintext
35 lines
629 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,
|
|
document: {
|
|
text: "Document with ID 1",
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "my-index-000001",
|
|
id: 2,
|
|
refresh: "true",
|
|
document: {
|
|
text: "Document with ID 2",
|
|
},
|
|
});
|
|
console.log(response1);
|
|
|
|
const response2 = await client.search({
|
|
index: "my-index-000001",
|
|
query: {
|
|
terms: {
|
|
_id: ["1", "2"],
|
|
},
|
|
},
|
|
});
|
|
console.log(response2);
|
|
----
|