Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

249
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda