14 lines
229 B
Plaintext
14 lines
229 B
Plaintext
[source,js]
|
|
----
|
|
const response = await client.index({
|
|
index: 'books',
|
|
document: {
|
|
name: 'Snow Crash',
|
|
author: 'Neal Stephenson',
|
|
release_date: '1992-06-01',
|
|
page_count: 470,
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|