Files
elasticsearch-js/docs/doc_examples/9c2ce0132e4527077443f007d27b1158.asciidoc
2024-10-21 10:59:54 -05:00

38 lines
615 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: {
flattened: {
type: "flattened",
},
},
},
});
console.log(response);
const response1 = await client.index({
index: "idx",
id: 1,
document: {
flattened: {
field: ["foo"],
},
},
});
console.log(response1);
----