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

28 lines
507 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: [
[-70, 40],
[-80, 30],
[-90, 20],
],
},
},
},
},
},
});
console.log(response);
----