auto_date_histogram exceeding the time filter range giving in the search query in elastic search
`{ query: { bool: { must: [ { query_string: { query: “_index : (*)”, analyze_wildcard: true, default_field: “*”, allow_leading_wildcard: true, default_operator: “AND”, }, }, ], filter: [ { range: { “@timestamp”: { gte: “2024-03-31T18:30:00.000Z”, lte: “2024-04-11T18:29:00.000Z”, }, },`your text` }, ], }, }, size: 0, from: 0, sort: [{ “@timestamp”: { order: “desc” } }], […]