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

19 lines
364 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: "test",
id: 1,
script: {
source: "ctx._source.tags.add(params.tag)",
lang: "painless",
params: {
tag: "blue",
},
},
});
console.log(response);
----