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

22 lines
419 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: {
date: {
type: 'date',
format: 'yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis'
}
}
}
}
})
console.log(response)
----