惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
美团技术团队
小众软件
小众软件
Jina AI
Jina AI
S
SegmentFault 最新的问题
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
MongoDB `$facet` Explained: One Query, Multiple Results
VisuaLeaf · 2026-05-29 · via DEV Community

VisuaLeaf

Sometimes one MongoDB aggregation needs to return more than one result.

For example, from the same payments collection, you may want revenue by payment method, total revenue, and the latest paid payments.

You could write separate aggregations for each one. But $facet lets you keep them in the same pipeline.

It takes the same input documents and sends them through smaller pipelines. Each one returns its own result.

That is why $facet is useful for dashboards, reports, filters, and analytics pages.

MongoDB describes $facet as a way to run multiple aggregation pipelines in one stage on the same input documents. You can read more in the official MongoDB documentation.

MongoDB $facet diagram showing payments filtered with $match and split into byMethod, revenueSummary, and latestPayments.

The Payments Example

For this example, we will use a payments collection.onA document may look like this:

{
  amount: 120,
  method: "card",
  currency: "USD",
  status: "paid",
  paidAt: "2026-05-20T10:30:00Z"
}

Let’s say you want a small report on paid payments.

You need revenue by payment method, total revenue, and the latest paid payments.

All of these answers come from the same collection.

That is where $facet helps. You start with one filtered set of payments, then split it into different results.

In VisuaLeaf, this is easier to follow because you can see the data first, then build the pipeline step by step.

Payments collection in VisuaLeaf showing fields like amount, method, currency, status, and paidAt.

Build the Pipeline Visually

Now, we can build the aggregation step by step.

The first stage is $match.

{
  $match: {
    status: "paid"
  }
}

This keeps only paid payments.

It is better to filter the data before $facet, because every branch will use the same clean input.

In VisuaLeaf, you can see this directly in the preview. After the $match stage, the output should show only documents where status is paid.

VisuaLeaf Aggregation Builder showing a $match stage that filters payments where status equals paid.

Add the $facet Stage

After filtering the payments, we can add $facet.

This is the part where the pipeline splits.

Until now, the aggregation had one path. With $facet, the same paid payments can go in a few different directions.

For this example, I created three sections inside $facet: byMethod, revenueSummary, and latestPayments.

They all start from the same filtered payments. They just answer different questions.

1. byMethod

The first one is byMethod.

Here, the payments are grouped by $method.

So instead of looking at every payment one by one, we can see how each payment method performed.

For example, card payments may have one total, bank transfers another total, and PayPal another one.

This branch also counts how many payments each method has.

VisuaLeaf showing the byMethod $facet branch grouped by payment method.

2. revenueSummary

The next one is revenueSummary.

This is the quick summary of the paid payments.

It gives the total revenue, the number of payments, and the average payment amount.

After the values are calculated, $project keeps the result clean. We do not need every internal field here. We only need the numbers that will be shown in the report.

VisuaLeaf showing the revenueSummary branch with total revenue, number of payments, and average payment.

3. latestPayments

The last one is latestPayments.

This branch is for the recent records.

It sorts the paid payments by paidAt, with the newest payments first. Then it keeps only a few results.

That makes it useful for a small table, like “latest payments” in a dashboard.

VisuaLeaf sorting paid payments by paidAt in descending order inside a $facet pipeline.

Check the Final Result

After the branches are ready, run the aggregation.

The result will look different from a normal list of documents.

Instead of getting only payments, you get one result with separate sections inside it.

{
  byMethod: [...],
  revenueSummary: [...],
  latestPayments: [...]
}

Each section comes from one branch inside $facet.

byMethod shows the grouped revenue by payment method.

revenueSummary shows the main numbers.

latestPayments shows the newest paid records.

This is why $facet works well for reports. You can prepare several parts of the same page from one aggregation.

VisuaLeaf showing the final $facet result with byMethod, revenueSummary, and latestPayments outputs.

Check the Generated Query Code

After building the pipeline visually, you can open the generated query code.

This is useful because you can see the exact MongoDB aggregation behind the visual steps.

In this example, the query looks like this:

db.payments.aggregate([
  {
    $match: {
      status: "paid"
    }
  },
  {
    $facet: {
      byMethod: [
        {
          $group: {
            _id: "$method",
            totalPayments: { $sum: 1 },
            totalAmount: { $sum: "$amount" }
          }
        },
        {
          $sort: {
            totalAmount: -1
          }
        }
      ],
      revenueSummary: [
        {
          $group: {
            _id: null,
            totalRevenue: { $sum: "$amount" },
            numberOfPayments: { $sum: 1 },
            averagePayment: { $avg: "$amount" }
          }
        },
        {
          $project: {
            _id: 0,
            totalRevenue: 1,
            numberOfPayments: 1,
            averagePayment: { $round: ["$averagePayment", 2] }
          }
        }
      ],
      latestPayments: [
        {
          $sort: {
            paidAt: -1
          }
        },
        {
          $limit: 5
        },
        {
          $project: {
            _id: 0,
            amount: 1,
            method: 1,
            currency: 1,
            paidAt: 1
          }
        }
      ]
    }
  }
])

This makes the visual builder easier to trust. You are not locked into a hidden workflow. You can build the pipeline visually, then read, copy, or adjust the generated code when you need it.

VisuaLeaf showing generated query code for a MongoDB $facet aggregation.

When This Is Useful

$facet makes sense when several results come from the same filtered data.

In this example, everything starts with paid payments.

From there, we get payment method totals, a revenue summary, and the latest payments.

That is the kind of structure you often need in a dashboard or report.

You do not need $facet for every aggregation. If you only need one result, a normal pipeline is easier.

But when the same data needs to answer a few different questions, $facet keeps the logic in one place.

Conclusion

$facet looks a little strange at first, but the idea is not hard.

You start with one set of documents, then split that data into different results.

In this example, we started with paid payments. From there, we got revenue by method, a revenue summary, and the latest payments.

That is why $facet is useful for reports and dashboards. You can prepare several parts of the same page from one aggregation.

And when you build it visually, it is much easier to see what each branch is doing.

You can also try this in VisuaLeaf if you want to see the pipeline step by step instead of reading only the code.