30 lines
515 B
Plaintext
30 lines
515 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: {
|
|
post_date: {
|
|
type: 'date'
|
|
},
|
|
user: {
|
|
type: 'keyword'
|
|
},
|
|
name: {
|
|
type: 'keyword'
|
|
},
|
|
age: {
|
|
type: 'integer'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|