Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

137
Views
How to use typescript mapping for ElasticSearch response?

How do I set the Post SearchResult interface to the search return value

I can't set the interface to get the return results You can review the code below

dependencies

   "@nestjs/elasticsearch": "^8.1.0",
   "@elastic/elasticsearch": "^8.2.1",
   "@types/elasticsearch": "^5.0.40",

interface Post

export interface PostSearchResultInterface {
    hits: {
        total: {
            value: number;
        };
        hits: Array<{
            total: {
                value: number;
            }
            _source: PostSearchBodyInterface;
        }>;
    };
}

code

     const  search  = await this.elasticsearchService.search<PostSearchBodyInterface>({
                index: this.index,
                from: offset,
                size: limit,
                body: {
                    query: {
                        bool: {
                            should: {
                                multi_match: {
                                    query: text,
                                    fields: ['title', 'story', 'other_titles']
                                }
                            },
                            filter: {
                                range: {
                                    id: {
                                        gte: startId
                                    }
                                }
                            }
                        },
                    },
                    sort: {
                        id: {
                            order: 'asc'
                        }
                    }
                }
            }) ;


             // error here 
            let count = search.hits.total.value
           
            const hits = search.hits.hits;
            const results = hits.map((item) => item._source);
            return {
                count : startId ? separateCount : count,
                results
            }

error TS2339: Property 'value' does not exist on type 'number | SearchTotalHits'. Property 'value' does not exist on type 'number'.

ERROR: let count = search.hits.total.value
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Assuming dependencies are (as question posted) :

"@nestjs/elasticsearch": "^8.1.0",
"@elastic/elasticsearch": "^8.2.1",
"@types/elasticsearch": "^5.0.40",

First, create a dedicated type for the indexed document, for example :

export type Document = { 
  title: string, 
  tags: string[]
};

Then, simply search for documents :

const a = await this.elastic.search<Document>({ //...request... });

const total = a.hits.total;
const documents = a.hits.hits.map(document => {
  // query metadata fields returned by elastic
  document._id;

  // get fields for <Document> type
  document._source.title...
  document._source.tags...
})
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!