Files
elasticsearch-js/docs/doc_examples/d8b2a88b5eca99d3691ad3cd40266736.asciidoc
Tomas Della Vedova 1e1252383d Added doc examples (#1011)
* Added generate-docs-examples script

* Added doc_examples folder wth the initial examples
2019-11-29 14:40:05 +01:00

27 lines
458 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: {
age: {
type: 'integer'
},
email: {
type: 'keyword'
},
name: {
type: 'text'
}
}
}
}
})
console.log(response)
----