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

19 lines
308 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: 'twitter',
body: {
query: {
term: {
user: 'kimchy'
}
}
}
})
console.log(response)
----