30 lines
486 B
Plaintext
30 lines
486 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.bulk({
|
|
index: "index1",
|
|
refresh: "true",
|
|
operations: [
|
|
{
|
|
index: {
|
|
_id: "doc1",
|
|
},
|
|
},
|
|
{
|
|
comment: "run with scissors",
|
|
},
|
|
{
|
|
index: {
|
|
_id: "doc2",
|
|
},
|
|
},
|
|
{
|
|
comment: "running with scissors",
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|