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

21 lines
352 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: 'test1',
body: {
mappings: {
properties: {
user: {
type: 'keyword'
}
}
}
}
})
console.log(response)
----