Currently to search nested fields I do something like:
Is it possible to somehow say "fields.MRSSN1" instead of listing out the
curl -XGET 'http://dslg1:9200/forms1/object/_search ' -d '{
             
            
              
            
           
          
            
              
                kimchy  
              
                  
                    June 3, 2012,  9:16am
                   
                  2 
               
             
            
              Yes, you can, unless you sue nested mapping (not sure if thats what you
On Wed, May 30, 2012 at 9:43 PM, Mohit Anchlia mohitanchlia@gmail.com wrote:
Currently to search nested fields I do something like:
Is it possible to somehow say "fields.MRSSN1" instead of listing out the
curl -XGET 'http://dslg1:9200/forms1/object/_search ' -d '{
 
             
            
              
            
           
          
            
            
              On Sun, Jun 3, 2012 at 2:16 AM, Shay Banon kimchy@gmail.com  wrote:
Yes, you can, unless you sue nested mapping (not sure if thats what you
Could you please give me a short example so that I can visualize what you
 
On Wed, May 30, 2012 at 9:43 PM, Mohit Anchlia mohitanchlia@gmail.com wrote:
Currently to search nested fields I do something like:
Is it possible to somehow say "fields.MRSSN1" instead of listing out the
curl -XGET 'http://dslg1:9200/forms1/object/_search ' -d '{http://setmodel.forms.id/ " :
 
 
             
            
              
            
           
          
            
            
              On Sun, Jun 3, 2012 at 9:45 AM, Mohit Anchlia mohitanchlia@gmail.com wrote:
On Sun, Jun 3, 2012 at 2:16 AM, Shay Banon kimchy@gmail.com  wrote:
Yes, you can, unless you sue nested mapping (not sure if thats what you
Could you please give me a short example so that I can visualize what you
 
 
Is there any chance you could give me some pointers here?
On Wed, May 30, 2012 at 9:43 PM, Mohit Anchlia mohitanchlia@gmail.com wrote:
Currently to search nested fields I do something like:
Is it possible to somehow say "fields.MRSSN1" instead of listing out the
curl -XGET 'http://dslg1:9200/forms1/object/_search ' -d '{http://setmodel.forms.id/ "
 
 
 
             
            
              
            
           
          
            
            
              
    Could you please give me a short example so that I can
    visualize what you mean?
Is there any chance you could give me some pointers here?
 
Have you looked at the examples in the docs? What have you tried? What
             
            
              
            
           
          
            
            
              On Thu, Jun 7, 2012 at 7:13 AM, Clinton Gormley clint@traveljury.com wrote:
    Could you please give me a short example so that I can
    visualize what you mean?
Is there any chance you could give me some pointers here?
 
Have you looked at the examples in the docs? What have you tried? What
 
But with related to which topic. I don't understand what exactly Shay was
             
            
              
            
           
          
            
            
              
But with related to which topic. I don't understand what exactly Shay
 
it's really difficult to point you in the right direction without
Have a read of this page Elasticsearch Platform — Find real-time answers at scale | Elastic  which gives
clint
             
            
              
            
           
          
            
            
              On Thu, Jun 7, 2012 at 7:27 AM, Clinton Gormley clint@traveljury.com wrote:
But with related to which topic. I don't understand what exactly Shay
 
it's really difficult to point you in the right direction without
Have a read of this page Elasticsearch Platform — Find real-time answers at scale | Elastic  which gives
clint
 
Did you get chance to look at my initial post? Is this not clear enough? If
Currently to search nested fields I do something like:
Is it possible to somehow say "fields.MRSSN1" instead of listing out the
curl -XGET 'http://dslg1:9200/forms1/object/_search ' -d '{
             
            
              
            
           
          
            
            
              
Did you get chance to look at my initial post? Is this not clear
 
I looked at your original post. Shay's response was "not sure if that is
You use the term "nested" but then you don't use nested queries in your
So reposting the same post doesn't make it any clearer. Read this
  
  
    
  Power insights and outcomes with the Elasticsearch Platform and AI. See into your data and find answers that matter with enterprise solutions designed to help you build, observe, and protect. Try Elasticsearch free today.
   
  
    
    
  
  
 
clint
Currently to search nested fields I do something like:
Is it possible to somehow say "fields.MRSSN1" instead of listing out
curl -XGET 'http://dslg1:9200/forms1/object/_search ' -d '{
 
             
            
              
            
           
          
            
            
              On Thu, Jun 7, 2012 at 7:41 AM, Clinton Gormley clint@traveljury.com wrote:
Did you get chance to look at my initial post? Is this not clear
 
I looked at your original post. Shay's response was "not sure if that is
You use the term "nested" but then you don't use nested queries in your
So reposting the same post doesn't make it any clearer. Read thisElasticsearch Platform — Find real-time answers at scale | Elastic 
 
Well that is what I am asking 
Currently to search nested fields I do something like:
Is it possible to somehow say "fields.MRSSN1" instead of listing out
curl -XGET 'http://dslg1:9200/forms1/object/_search ' -d '{http://setmodel.forms.id/ "
 
 
             
            
              
            
           
          
            
            
              
Well that is what I am asking 
 
Nothing.  It just works.
I can't guess what you're doing wrong, so if you're not going to give an
    > ----
    >
    > Currently to search nested fields I do something like:
    >
    > Is it possible to somehow say "fields.MRSSN1" instead of
    listing out
    > the complete Path like "setModel.forms.forms.fields"?
    >
    >  curl -XGET 'http://dslg1:9200/forms1/object/_search' -d '{
    >   "query" : {
    >     "bool" : {
    >         "must" : {
    >             "term" : { "setModel.forms.id" : "40" }
    >         },
    >         "should" : [
    >             {
    >                 "field" :
    { "setModel.forms.forms.fields.L31A" :
    > "L31" }
    >             },
    >             {
    >                 "field" :
    { "setModel.forms.forms.fields.MRSSN1" :
    > "MRS1" }
    >             }
    >         ],
    >         "minimum_number_should_match" : 2,
    >         "boost" : 1.0
    >     }
    >   }
    > }'
    >