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

20 lines
446 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:
"if (ctx._source.tags.contains(params.tag)) { ctx._source.tags.remove(ctx._source.tags.indexOf(params.tag)) }",
lang: "painless",
params: {
tag: "blue",
},
},
});
console.log(response);
----