Files
elasticsearch-js/docs/doc_examples/179f0a3e84ff4bbac18787a018eabf89.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

25 lines
438 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: {
multi_match: {
query: 'Jon',
type: 'cross_fields',
analyzer: 'standard',
fields: [
'first',
'last',
'*.edge'
]
}
}
}
})
console.log(response)
----