53 lines
899 B
Plaintext
53 lines
899 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: "test",
|
|
mappings: {
|
|
dynamic: false,
|
|
properties: {
|
|
text: {
|
|
type: "text",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "test",
|
|
refresh: "true",
|
|
document: {
|
|
text: "words words",
|
|
flag: "bar",
|
|
},
|
|
});
|
|
console.log(response1);
|
|
|
|
const response2 = await client.index({
|
|
index: "test",
|
|
refresh: "true",
|
|
document: {
|
|
text: "words words",
|
|
flag: "foo",
|
|
},
|
|
});
|
|
console.log(response2);
|
|
|
|
const response3 = await client.indices.putMapping({
|
|
index: "test",
|
|
properties: {
|
|
text: {
|
|
type: "text",
|
|
},
|
|
flag: {
|
|
type: "text",
|
|
analyzer: "keyword",
|
|
},
|
|
},
|
|
});
|
|
console.log(response3);
|
|
----
|