19 lines
385 B
Plaintext
19 lines
385 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.reindex({
|
|
source: {
|
|
index: "my-index-000001",
|
|
},
|
|
dest: {
|
|
index: "my-new-index-000001",
|
|
},
|
|
script: {
|
|
source: 'ctx._source.tag = ctx._source.remove("flag")',
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|