Files
elasticsearch-js/docs/doc_examples/ef9111c1648d7820925f12e07d1346c5.asciidoc
2020-05-15 10:34:39 +02:00

26 lines
456 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',
body: {
mappings: {
properties: {
my_field: {
type: 'text',
fields: {
keyword: {
type: 'keyword'
}
}
}
}
}
}
})
console.log(response)
----