Files
elasticsearch-js/docs/doc_examples/a34d70d7022eb4ba48909d440c80390f.asciidoc
2020-06-26 09:24:14 +02:00

19 lines
396 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: '%3Clogstash-%7Bnow%2Fd-2d%7D%3E%2C%3Clogstash-%7Bnow%2Fd-1d%7D%3E%2C%3Clogstash-%7Bnow%2Fd%7D%3E',
body: {
query: {
match: {
test: 'data'
}
}
}
})
console.log(response)
----