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

26 lines
494 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.indices.create({
index: "movies",
mappings: {
properties: {
name_and_plot: {
type: "text",
},
name: {
type: "text",
copy_to: "name_and_plot",
},
plot: {
type: "text",
copy_to: "name_and_plot",
},
},
},
});
console.log(response);
----