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

355
Views
When does the Express req.query variable get different types

I noticed that the type of query parameters in req.query is

string | string[] | QueryString.ParsedQS | QueryString.ParsedQS[]

but so far, whenever i used req.query i always got strings.

My questions are

  1. What is the QueryString.ParsedQS type?
  2. When will the parameter be an array?
  3. When will the parameter be a QueryString.ParsedQS
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

The type string | string[] | QueryString.ParsedQS | QueryString.ParsedQS[] is the type returned by qs.parse() method, take a look here at the declaration file: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/qs/index.d.ts#L57.

Take a look at the qs documentation for possible return values of qs.parse():
https://github.com/ljharb/qs

For req.query to be parsed from string to object you need to call express app.set('query parser', 'extended'), extended is the default value but you may have changed it in your code:
https://expressjs.com/en/api.html#app.set

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!