27 lines
487 B
Plaintext
27 lines
487 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({
|
|
sort: [
|
|
{
|
|
_geo_distance: {
|
|
"pin.location": [-70, 40],
|
|
order: "asc",
|
|
unit: "km",
|
|
mode: "min",
|
|
distance_type: "arc",
|
|
ignore_unmapped: true,
|
|
},
|
|
},
|
|
],
|
|
query: {
|
|
term: {
|
|
user: "kimchy",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|