Home > database >  How to use include query in elastic search?
How to use include query in elastic search?

Time:02-01

I use own analzyer to asciifolding and lowercase. How Can I send query about this:

{
   
  "query": {
    
    "query":"*mil*"
}

When I didn't use own analzyer I could do, thanks QuerStringBuilder. Now it's not working.

I tried to find a Polish stammer but it's not there. Is there any other way out? I need to have my own analyzer to map accents.

CodePudding user response:

Ok I solved problem. I changed .escape(true) to .escape(false) in my QuerStringBuilder.

  • Related