26 lines
416 B
Plaintext
26 lines
416 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: 'my_index',
|
|
id: '1',
|
|
body: {
|
|
group: 'fans',
|
|
user: [
|
|
{
|
|
first: 'John',
|
|
last: 'Smith'
|
|
},
|
|
{
|
|
first: 'Alice',
|
|
last: 'White'
|
|
}
|
|
]
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|