18 lines
309 B
Plaintext
18 lines
309 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: 'test',
|
|
id: '1',
|
|
refresh: true,
|
|
body: {
|
|
text: 'words words',
|
|
flag: 'foo'
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|