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

19 lines
330 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: {
bool: {
must_not: {
exists: {
field: "user.id",
},
},
},
},
});
console.log(response);
----