Hi.

What kind of analyzer do you use? I think it might be a problem with the 
whitespace (Or do you have the same problem if the value does not contain 
whitespaces?). 
In this case you can use a keyword analyzer (so you will not separate the 
words into single token) or map the fields to not_analyzed.





Am Donnerstag, 16. Oktober 2014 12:59:13 UTC+2 schrieb shekhar chauhan:
>
> Hi All,
>   I am facing a problem in searcing a nested object.My document structure 
> is -
>
> {
>    "sectionResults": [
>        {
>            "SectionName": "More Details",
>            "itemResults": [
>                
>                {
>                    "InspectionItem": "Project Name",
>                    "ItemInfo": ""
>                    
>                }
>            ]
>        }
>       
>    ]
> }
>
> and I have used this mapping query to make itemResults object(in document) 
> of nested type - 
> PUT realtek_release_v6_nestedsearch/_mapping
> {
>   "realtek_release_v6_nestedsearch":{
>     "properties": {
>       "sectionResults":{
>         "type": "object",
>         "properties": {
>           "itemResults":{
>             "type": "nested"
>           }
>         }
>       }
>     }
>   }
> }
>
> then i have checked the mapping .In mapping itemResults of nested type. 
> Everything if fine here.
> But problem comes in searching query for nested object.my searching query 
> is - 
>
> "query": {
>     "filtered": {
>       "query": {
>         "match_all": {}
>       },
>       "filter": {
>         "nested": {
>           "path": "sectionResults.itemResults",
>           "filter": {
>             "bool": {
>               "must": [ 
>                 {
>                   "term": {
>                     "itemResults.InspectionItem": "Project Name"
>                   }
>                 }
>               ]
>             }
>           }
>         }
>         }
>       }
>     }
>
> this query returns 0 matching results.but result exists in database.I do 
> not know whether i am doing mistake in mapping or search query.Please help.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/57701159-6000-493b-a0a6-28c054ac22ee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to