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

65 lines
1.3 KiB
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: {
nested: {
path: 'parent',
query: {
bool: {
must: {
range: {
'parent.age': {
gte: 21
}
}
},
filter: {
nested: {
path: 'parent.child',
query: {
match: {
'parent.child.name': 'matt'
}
}
}
}
}
}
}
},
sort: [
{
'parent.child.age': {
mode: 'min',
order: 'asc',
nested: {
path: 'parent',
filter: {
range: {
'parent.age': {
gte: 21
}
}
},
nested: {
path: 'parent.child',
filter: {
match: {
'parent.child.name': 'matt'
}
}
}
}
}
}
]
}
})
console.log(response)
----