// 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({ index: "example", query: { bool: { must: { match_all: {}, }, filter: { geo_shape: { location: { shape: { type: "envelope", coordinates: [ [13, 53], [14, 52], ], }, relation: "within", }, }, }, }, }, }); console.log(response); ----