Files
elasticsearch-js/docs/doc_examples/2fe28d9a91b3081a9ec4601af8fb7b1c.asciidoc
2020-06-26 09:24:14 +02:00

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)
----