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

15 lines
276 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: {
term: {
_ignored: "@timestamp",
},
},
});
console.log(response);
----