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

20 lines
322 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({
body: {
from: 5,
size: 20,
query: {
term: {
'user.id': '8a4f500d'
}
}
}
})
console.log(response)
----