GET /document/product/_search
{
"query": {
"match": {
"filename": "Trident"
}
},
"range" : {
"timestamp" : {
"gt" : "now-24h"
}
}
}
所以,我试图返回过去24小时内的所有数据输入。
在文档中,日期格式为"2014-01-07 00:00:00"
但我的时间戳格式为"2017-05-31T13:52:41.740Z"
我认为因为我的日期格式与文档不同,我的查询不起作用。如何以这种日期格式输入24小时?