45 lines
758 B
Plaintext
45 lines
758 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: "idx",
|
|
settings: {
|
|
index: {
|
|
mapping: {
|
|
source: {
|
|
mode: "synthetic",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
mappings: {
|
|
properties: {
|
|
text: {
|
|
type: "text",
|
|
fields: {
|
|
raw: {
|
|
type: "keyword",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "idx",
|
|
id: 1,
|
|
document: {
|
|
text: [
|
|
"the quick brown fox",
|
|
"the quick brown fox",
|
|
"jumped over the lazy dog",
|
|
],
|
|
},
|
|
});
|
|
console.log(response1);
|
|
----
|