Added new docs examples (#1149)

* Updated enabled files list

* Added new docs examples
This commit is contained in:
Tomas Della Vedova
2020-04-10 12:20:25 +02:00
committed by GitHub
parent 7717799ca6
commit 0e659031e3
47 changed files with 1193 additions and 1 deletions

View File

@ -0,0 +1,24 @@
// 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: {
sort: [
{
price: {
missing: '_last'
}
}
],
query: {
term: {
product: 'chocolate'
}
}
}
})
console.log(response)
----