Files
elasticsearch-js/docs/doc_examples/913770050ebbf3b9b549a899bc11060a.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

26 lines
457 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: 'twitter',
body: {
mappings: {
properties: {
counter: {
type: 'integer',
store: false
},
tags: {
type: 'keyword',
store: true
}
}
}
}
})
console.log(response)
----