Files
elasticsearch-js/docs/doc_examples/22334f4b24bb8977d3e1bf2ffdc29d3f.asciidoc
2024-07-29 17:10:05 -05:00

62 lines
1.2 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({
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);
----