mongodb-aggregation-pipeline

Installation
SKILL.md

MongoDB Aggregation Pipeline

Master powerful data transformation with aggregation pipeline.

Quick Start

Basic Pipeline Structure

const result = await collection.aggregate([
  { $match: { status: 'active' } },
  { $group: { _id: '$category', count: { $sum: 1 } } },
  { $sort: { count: -1 } },
  { $limit: 10 }
]).toArray();

Common Pipeline Stages

Installs
7
GitHub Stars
1
First Seen
Feb 1, 2026
mongodb-aggregation-pipeline — pluginagentmarketplace/custom-plugin-mongodb