// 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: "items", query: { bool: { must: { match: { name: "chocolate", }, }, should: { distance_feature: { field: "production_date", pivot: "7d", origin: "now", }, }, }, }, }); console.log(response); ----