// 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); ----