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

226
Vistas
How to duplicate a document during aggregation in mongo?

Is there any way to duplicate a document during aggregation in mongo? For example, I've got a "Person" schema that looks like that:

Person:

{
  _id: ObjectId,
  fullName: string,
  matches: number
}

I want to make an aggregation that returns all the persons and duplicates each person's document by the number of his matches.

for example for this collection:

[{
  _id: 1,
  fullName: "John Doe",
  matches: 1
},
{
  _id: 2,
  fullName: "Bla Bla",
  matches: 2
}]

The result will be:

[{
  _id: 1,
  fullName: "John Doe",
  matches: 1
},
{
  _id: 2,
  fullName: "Bla Bla",
  matches: 2
},
{
  _id: 2,
  fullName: "Bla Bla",
  matches: 2
}]

I know that I can add fields to the documents during the aggregation but didn't found anything about adding documents.

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

  • $map to iterate loop of range, $range start from 0 and end at matches number, it will return array of current root document
  • $unwind deconstruct matches array
  • $replaceRoot replace matches object to root
db.collection.aggregate([
  {
    $project: {
      matches: {
        $map: {
          input: { $range: [0, "$matches"] },
          in: "$$ROOT"
        }
      }
    }
  },
  { $unwind: "$matches" },
  { $replaceRoot: { newRoot: "$matches" } }
])

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