Files
elasticsearch-js/docs/doc_examples/6cb1dae368c945ecf7c9ec332a5743a2.asciidoc
Elastic Machine 7da9976777 Auto-generated code for 8.x (#2412)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
2024-10-28 15:12:33 -05:00

45 lines
758 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: "idx",
settings: {
index: {
mapping: {
source: {
mode: "synthetic",
},
},
},
},
mappings: {
properties: {
text: {
type: "text",
fields: {
raw: {
type: "keyword",
},
},
},
},
},
});
console.log(response);
const response1 = await client.index({
index: "idx",
id: 1,
document: {
text: [
"the quick brown fox",
"the quick brown fox",
"jumped over the lazy dog",
],
},
});
console.log(response1);
----