Files
elasticsearch-js/docs/doc_examples/268151ed1f0e12586e66e614b61d7981.asciidoc
2024-07-29 17:10:05 -05:00

24 lines
455 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({
query: {
bool: {
must: {
match_all: {},
},
filter: {
geo_polygon: {
"person.location": {
points: ["drn5x1g8cu2y", "30, -80", "20, -90"],
},
},
},
},
},
});
console.log(response);
----