Files
elasticsearch-js/docs/doc_examples/2fe28d9a91b3081a9ec4601af8fb7b1c.asciidoc
2024-07-29 17:10:05 -05:00

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