Added new docs examples (#1149)
* Updated enabled files list * Added new docs examples
This commit is contained in:
committed by
GitHub
parent
7717799ca6
commit
0e659031e3
22
docs/doc_examples/14701dcc0cca9665fce2aace0cb62af7.asciidoc
Normal file
22
docs/doc_examples/14701dcc0cca9665fce2aace0cb62af7.asciidoc
Normal file
@ -0,0 +1,22 @@
|
||||
// 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',
|
||||
size: '0',
|
||||
filter_path: 'hits.total',
|
||||
body: {
|
||||
query: {
|
||||
range: {
|
||||
likes: {
|
||||
lt: 10
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
console.log(response)
|
||||
----
|
||||
|
||||
Reference in New Issue
Block a user