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

44 lines
868 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: "my-index-000001",
mappings: {
dynamic_templates: [
{
named_analyzers: {
match_mapping_type: "string",
match: "*",
mapping: {
type: "text",
analyzer: "{name}",
},
},
},
{
no_doc_values: {
match_mapping_type: "*",
mapping: {
type: "{dynamic_type}",
doc_values: false,
},
},
},
],
},
});
console.log(response);
const response1 = await client.index({
index: "my-index-000001",
id: 1,
document: {
english: "Some English text",
count: 5,
},
});
console.log(response1);
----