58 lines
932 B
Plaintext
58 lines
932 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response0 = await client.indices.create({
|
|
index: 'test',
|
|
body: {
|
|
mappings: {
|
|
dynamic: false,
|
|
properties: {
|
|
text: {
|
|
type: 'text'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response0)
|
|
|
|
const response1 = await client.index({
|
|
index: 'test',
|
|
refresh: true,
|
|
body: {
|
|
text: 'words words',
|
|
flag: 'bar'
|
|
}
|
|
})
|
|
console.log(response1)
|
|
|
|
const response2 = await client.index({
|
|
index: 'test',
|
|
refresh: true,
|
|
body: {
|
|
text: 'words words',
|
|
flag: 'foo'
|
|
}
|
|
})
|
|
console.log(response2)
|
|
|
|
const response3 = await client.indices.putMapping({
|
|
index: 'test',
|
|
body: {
|
|
properties: {
|
|
text: {
|
|
type: 'text'
|
|
},
|
|
flag: {
|
|
type: 'text',
|
|
analyzer: 'keyword'
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response3)
|
|
----
|
|
|