65 lines
1.3 KiB
Plaintext
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)
|
|
----
|
|
|