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

150
Views
mongodb facet with root

Is there a way to push root documents to specific field on $facet without $group ? For example,

db.artwork.aggregate( [
  {
    $facet: {
      "categorizedByTags": [
        { $unwind: "$tags" },
        { $sortByCount: "$tags" }
      ],
      "items": [{$push: "$$ROOT"}] // I want to push all root document to `items`.
    }
  }])
over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

Yes, just use an empty $match, like so:

db.artwork.aggregate( [
  {
    $facet: {
      "categorizedByTags": [
        { $unwind: "$tags" },
        { $sortByCount: "$tags" }
      ],
      "items": [{$match: {}}]
    }
  }])
over 4 years ago · Santiago Trujillo Report

0

You can use like this:

db.artwork.aggregate( [
{
 $facet: {
   items: [ { $match: {} } ],
  }
 }
])
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!