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

385
Views
MongoDB generates same ObjectId with new ObjectId in pipeline's $project stage

As last stage of my pipeline, I have a $project like this :

{
  ...
  anId : new ObjectId()
}

But mongo is generating the same Id for each document. I want it to generate a new different Id for each projected document. How to do so within the pipeline?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

you can do it with the help of $function aggregation:

{
  anId: {
    $function: {
      body: function() {
        return new ObjectId();
      },
      args: [],
      lang: 'js'
    }
  }
}
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!