Hello together,
I have a question about searching fields.
My Question is how can I use an analyzer in a match_all query? The only thing I saw was when people used a analyzer on a specfic text like 'Text: "How are you"'.
Well I wan't to filter out some common words out of a field which is called "Inhalt" I think using stopwords is the right solution but Iam not sure how to use them related to a match_all query.
My goal is to get a list of often used words (keywords) without common words like (the, about, able .. and so on)
Current Search Query:
//GET _search
{
"query": {
"match_all": {}
},
"aggs": {
"nachrichten": {
"terms": {
"field": "inhalt",
"size": "1000"
}
}
},
"size": 0
}