// 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); ----