Fetch special character contain word document

Hi All ,

Am using elasticsearch 2.4.4 . Fields value contains "@".I want to fetch documents those contains "@" . im using below query

    {  
       "query":{  
          "filtered":{  
             "query":{  
                "query_string":{  
                   "analyze_wildcard":true,
                   "query":"*\\\\@*",
                   "fields":[  
                      "task_name",
                      "task_description",
                      "acronym_name"
                   ]
                }
             }
          }
       },
 
   "from":0,
   "size":25
}

i unable to get documents . please do needful.

Thanks,
B.Balamurugan

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.