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

17 lines
323 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.updateByQuery({
index: "my-index-000001",
query: {
term: {
"user.id": "kimchy",
},
},
max_docs: 1,
});
console.log(response);
----