Files
elasticsearch-js/docs/doc_examples/fdd38f0d248385a444c777e7acd97846.asciidoc
Tomas Della Vedova 1e1252383d Added doc examples (#1011)
* Added generate-docs-examples script

* Added doc_examples folder wth the initial examples
2019-11-29 14:40:05 +01:00

23 lines
412 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: {
query_string: {
fields: [
'title',
'content'
],
query: 'this OR that OR thus',
minimum_should_match: 2
}
}
}
})
console.log(response)
----