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

258
Views
How to get array elements using a list of index in mongoDB?

Consider the following document in mongoDB:

{words:['a','b','c','d','e','f']}

I know it's easy to get a single element or a range in mongodb using $arrayElemAt or $slice.

But how can I get multiple elements by giving a list of indices?

For example, if I have a list of indices:

[0,2,5]

the expected result is:

{words:['a','c','f']}
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You can pass your array as in parameter into $map and then use $arrayElemAt operator:

db.collection.aggregate([
    {
        $project: {
            words: {
                $map: {
                    input: [0,2,5],
                    as: "index",
                    in: { $arrayElemAt: [ "$words", "$$index" ] }
                }
            }
        }
    }
])

Mongo Playground

over 4 years ago · Santiago Trujillo 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!