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

129
Views
How to select only products with ids from ids array. MongoDB

I'm getting all products and populate the category with mongoDB. Also I have array with category ids and I want to get only products, that have that ids in category object. How to select only this products?

arr of ids [ '615e94cab42d2274f0481232' ]

arr of products [
  {
    _id: new ObjectId("615e945cb42d2274f0481211"),
    image: '',
    category: { _id: new ObjectId("615da90b689b8ef91fa90afd"), name: 'Разное' },
    name: '435пукп',
    type: 'В упаковке',
    piecesPerPackage: 2,
    pricePerPiece: 1,
    pricePerPackage: 2,
    weight: 12,
    description: 'вапвап'
  },
  {
    _id: new ObjectId("615eaa08f68e788c63817641"),
    image: '',
    category: { _id: new ObjectId("615e94cab42d2274f0481232"), name: '2' },
    name: '2',
    type: 'В упаковке',
    piecesPerPackage: 2,
    pricePerPiece: 2,
    pricePerPackage: 2,
    weight: 2,
    description: '2'
  }
]

async sortCatalog(arr) {
        const products = await CatalogModel.find().lean()
            .populate("category", "name").select('-__v');
        console.log("arr of ids", arr)
        console.log("arr of products", products)
    }

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

0

Use category._id to find it.

await CatalogModel.find({'category._id':new ObjectId("615e94cab42d2274f0481232")})
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!