Files
elasticsearch-js/docs/doc_examples/3cd50a789b8e1f0ebbbc53a8d7ecf656.asciidoc
Tomas Della Vedova 28205e97cf Update docs examples (#1081)
* Updated enabled files list

* Generated docs examples

* Generated docs examples
2020-02-06 12:04:29 +01:00

39 lines
762 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({
body: {
query: {
bool: {
should: [
{
multi_match: {
query: 'Will Smith',
type: 'cross_fields',
fields: [
'first',
'last'
],
minimum_should_match: '50%'
}
},
{
multi_match: {
query: 'Will Smith',
type: 'cross_fields',
fields: [
'*.edge'
]
}
}
]
}
}
}
})
console.log(response)
----