27 lines
499 B
Plaintext
27 lines
499 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({
|
|
index: "my-index",
|
|
query: {
|
|
bool: {
|
|
must_not: [
|
|
{
|
|
nested: {
|
|
path: "comments",
|
|
query: {
|
|
term: {
|
|
"comments.author": "nik9000",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|