Files
elasticsearch-js/docs/doc_examples/06afce2955f9094d96d27067ebca32e8.asciidoc
Tomas Della Vedova 01e045f491 Update docs examples (#1024)
* Updated generate-docs-examples script

* Updated docs examples
2019-12-19 09:29:15 +01:00

49 lines
828 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: {
must: {
term: {
user: 'kimchy'
}
},
filter: {
term: {
tag: 'tech'
}
},
must_not: {
range: {
age: {
gte: 10,
lte: 20
}
}
},
should: [
{
term: {
tag: 'wow'
}
},
{
term: {
tag: 'elasticsearch'
}
}
],
minimum_should_match: 1,
boost: 1
}
}
}
})
console.log(response)
----