56 lines
985 B
Plaintext
56 lines
985 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response0 = await client.index({
|
|
index: 'my_index',
|
|
id: '1',
|
|
body: {
|
|
message: 'some arrays in this document...',
|
|
tags: [
|
|
'elasticsearch',
|
|
'wow'
|
|
],
|
|
lists: [
|
|
{
|
|
name: 'prog_list',
|
|
description: 'programming list'
|
|
},
|
|
{
|
|
name: 'cool_list',
|
|
description: 'cool stuff list'
|
|
}
|
|
]
|
|
}
|
|
})
|
|
console.log(response0)
|
|
|
|
const response1 = await client.index({
|
|
index: 'my_index',
|
|
id: '2',
|
|
body: {
|
|
message: 'no arrays in this document...',
|
|
tags: 'elasticsearch',
|
|
lists: {
|
|
name: 'prog_list',
|
|
description: 'programming list'
|
|
}
|
|
}
|
|
})
|
|
console.log(response1)
|
|
|
|
const response2 = await client.search({
|
|
index: 'my_index',
|
|
body: {
|
|
query: {
|
|
match: {
|
|
tags: 'elasticsearch'
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response2)
|
|
----
|
|
|