Hi all,
 I am new to elastic search.I am using nested filter query.this query is 
giving error "failed to find nested object under path [itemResults]]".

my document structure is -

{
   "_id": "inspectionresults-07d864fd-76ec-427a-a1c6-b70e420ce3d8",
   "_rev": "12-64c44ddcfcd477dfa86cdb9d3c659748",
   "sectionResults": [
       
       {
           "SectionName": "More Details",
           "itemResults": [
               
               {
                   "InspectionItem": "Launch Month",
                   "ItemInfo": ""
                   
               }
           ]
       }
      
   ]
}

and my query is - 

{
  "query": {
    "filtered": {
      "query": {
        "match_all": {}
      },
      "filter": {
        "nested": {
          "path": "itemResults",
          "filter": {
            "bool": {
              "must": [
                {
                  "term": {
                    "itemResults.InspectionItem": "Launch Month"
                  }
                }
              ]
            }
          }
        }
        }
      }
    }
  }  

Error - "failed to find nested object under path [itemResults]]"

But as you are seeing in document itemResults is already nested object.
Please reply.
Thanks in advance,

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/a38b570f-64ac-44e6-8424-59ffb6bafa52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to