What if the value is about an URL like http://google.com in the filed, then is it possible to search the query to exact filter?
GET index/type/_search
{
"size": 20,
"query": {
"match": {
"url": "http://google.com"
}
}
}
i think it didn't work for my search (query and filter), any one can help me look at this? Thank you!!!