正确的查询应如下所示
{ "sort": [ { "datePublished": { "order": "desc" } } ], "query": { "term": { "location": { "value": "Cloppenburg" } } }}就像我之前写的答案一样,我只是增强并包含了您的日期字段,所以我的映射看起来像
{ "mappings": { "properties": { "location": { "type": "keyword" }, "datePublished" : { "type" : "date" } } }}


