Files
elasticsearch-js/docs/doc_examples/6cb1dae368c945ecf7c9ec332a5743a2.asciidoc
2024-10-21 10:59:54 -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);
----