Getting complete value from ElasticSearch query

2014-06-20 Thread Vinay Pandey
I have the following structure on my ElasticSearch: { _index: 3_exposureindex _type: exposuresearch _id: 12738 _version: 4 _score: 1 _source: { Name: test2_update Description: CreateUserId: 8

Re: Getting complete value from ElasticSearch query

2014-06-20 Thread Vinay Pandey
I forgot to mention that I have asked the same question in StackOverflow http://stackoverflow.com/questions/24333655/getting-complete-value-from-elasticsearch-query On Friday, June 20, 2014 11:52:49 AM UTC-7, Vinay Pandey wrote: I have the following structure on my ElasticSearch

Re: Getting complete value from ElasticSearch query

2014-06-20 Thread Vinay Pandey
This just got answered: You should be able to specify _source in the fields Example: { fields: [ _parent, _source ], query: { terms: { Id: [ 12738 ] } }} On Friday, June 20, 2014 11:52:49 AM UTC-7, Vinay Pandey wrote: I have the following