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

19 lines
378 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.update({
index: "my-index-000001",
id: 1,
script: {
source: "ctx._source.tags.add(params['tag'])",
lang: "painless",
params: {
tag: "blue",
},
},
});
console.log(response);
----