19 lines
354 B
Plaintext
19 lines
354 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.index({
|
|
index: "music",
|
|
id: 1,
|
|
refresh: "true",
|
|
document: {
|
|
suggest: {
|
|
input: ["Nevermind", "Nirvana"],
|
|
weight: 34,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|