Files
elasticsearch-js/docs/doc_examples/77243bbf92f2a55e0fca6c2a349a1c15.asciidoc
Tomas Della Vedova 0e659031e3 Added new docs examples (#1149)
* Updated enabled files list

* Added new docs examples
2020-04-10 12:20:25 +02:00

36 lines
573 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: {
sort: [
{
_geo_distance: {
'pin.location': [
[
-70,
40
],
[
-71,
42
]
],
order: 'asc',
unit: 'km'
}
}
],
query: {
term: {
user: 'kimchy'
}
}
}
})
console.log(response)
----