0
我有一個需求,我只需要返回其註釋不以String開頭的那些記錄。 PFB查詢和這種方法不起作用。需要幫助如何在'elasticsearch 2.x'中搜索'開始'搜索
{
"size": 0,
"fields": ["id","comment"],
"query": {
"bool": {
"must_not": [
{
"wildcard": {
"comment":
"AG//*"
}
}
]
}
}
}
你能提供你的映射嗎?是評論欄not_analyzed? – ChintanShah25