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

176
Views
query mongo based on results of query

I have this mongoose query:

let rE = await cR.find({myid: "xxxxxx"});

now this query will return multiple results, in which I then need to query another model based off of the rE.class_id, which is returned through rE, the query above. So I do this:

let cla = await Cl.find({_id: rE.class_id});

however, that obviously doesn't work because rE.class_id gets returned as multiple objects, so placing rE.class_id just wont work. How can I get this to work?

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

If you are trying to get all Cl models where _id = (classIds of models rE) Then you can try this one:

let rE = await cR.find({myid: "xxxxxx"});
const classIds = rE.map(r => r.classId);
let cla = await Cl.find({_id: {$in: classIds}});
about 4 years ago · Juan Pablo Isaza Report

0

const data = await cR.aggregagte([
  {
    '$match': {
       myid: "xxxxxx" 
    }
  },
  {
    '$lookup': {
      'from': 'rE', 
      'localField': 'authorId', 
      'foreignField': '_id', 
      'as': 'cla'
    }
  }
]);
about 4 years ago · Juan Pablo Isaza 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!