Files
elasticsearch-js/docs/doc_examples/75e360d03fb416f0a65ca37c662c2e9c.asciidoc
2024-07-29 17:10:05 -05:00

50 lines
691 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: "transactions",
refresh: "true",
operations: [
{
index: {
_id: 1,
},
},
{
type: "sale",
amount: 80,
},
{
index: {
_id: 2,
},
},
{
type: "cost",
amount: 10,
},
{
index: {
_id: 3,
},
},
{
type: "cost",
amount: 30,
},
{
index: {
_id: 4,
},
},
{
type: "sale",
amount: 130,
},
],
});
console.log(response);
----