搜索在特定时间戳之后添加的文档-> Elastic Search

Search the documents that were added after specific timestamp-> Elastic Search

我想在 Elastic Search 中搜索在特定时间戳后添加的文档,我尝试了 'search_after' 和 'from',但似乎没有任何效果。有什么方法可以在特定的 ID 或时间戳之后进行搜索吗?

我尝试了范围查询并且有效

"query": { "range": 
        { "timestamp": { "gte": 1641203425, "lte": 1641280856 } } } 

我在哪里使用时间戳格式的日期。