Files
elasticsearch-js/docs/doc_examples/b214942b938e47f2c486e523546cb574.asciidoc
Tomas Della Vedova 0e659031e3 Added new docs examples (#1149)
* Updated enabled files list

* Added new docs examples
2020-04-10 12:20:25 +02:00

30 lines
502 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.search({
index: 'my_index',
body: {
query: {
bool: {
must: [
{
match: {
'user.first': 'Alice'
}
},
{
match: {
'user.last': 'Smith'
}
}
]
}
}
}
})
console.log(response)
----