(cherry picked from commit f737290d10)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
37 lines
709 B
Plaintext
37 lines
709 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-000001",
|
|
id: 5,
|
|
refresh: "true",
|
|
document: {
|
|
query: {
|
|
bool: {
|
|
should: [
|
|
{
|
|
match: {
|
|
message: {
|
|
query: "Japanese art",
|
|
_name: "query1",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
match: {
|
|
message: {
|
|
query: "Holand culture",
|
|
_name: "query2",
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|