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

34 lines
582 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: {
term: {
product: 'chocolate'
}
},
sort: [
{
'offer.price': {
mode: 'avg',
order: 'asc',
nested: {
path: 'offer',
filter: {
term: {
'offer.color': 'blue'
}
}
}
}
}
]
}
})
console.log(response)
----