• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

327
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?

about 3 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'
    }
  }
}
about 3 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 Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error