48 lines
663 B
Plaintext
48 lines
663 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({
|
|
body: [
|
|
{
|
|
index: {
|
|
_index: 'test',
|
|
_id: '1'
|
|
}
|
|
},
|
|
{
|
|
field1: 'value1'
|
|
},
|
|
{
|
|
delete: {
|
|
_index: 'test',
|
|
_id: '2'
|
|
}
|
|
},
|
|
{
|
|
create: {
|
|
_index: 'test',
|
|
_id: '3'
|
|
}
|
|
},
|
|
{
|
|
field1: 'value3'
|
|
},
|
|
{
|
|
update: {
|
|
_id: '1',
|
|
_index: 'test'
|
|
}
|
|
},
|
|
{
|
|
doc: {
|
|
field2: 'value2'
|
|
}
|
|
}
|
|
]
|
|
})
|
|
console.log(response)
|
|
----
|
|
|