// 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); ----