(cherry picked from commit f737290d10)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
21 lines
391 B
Plaintext
21 lines
391 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({
|
|
query: {
|
|
has_child: {
|
|
type: "child",
|
|
query: {
|
|
match_all: {},
|
|
},
|
|
max_children: 10,
|
|
min_children: 2,
|
|
score_mode: "min",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|