...

/

Multi-Stages Aggregation in Action

Multi-Stages Aggregation in Action

Learn to create multi-stage aggregation pipelines in MongoDB to perform complex data transformations like filtering, grouping, and calculating totals step by step.

What is a multi-stage pipeline?

A multi-stage pipeline is a sequence of aggregation stages, each transforming the data and passing it to the next stage. These stages are executed in order, and the output of one stage becomes the input for the next, allowing us to build complex data transformations step by step, much like an assembly line. 

Let's begin creating multi-stage pipelines for the real-world examples we covered earlier.

Examples

For instance, if we need to calculate the number of orders that got cancelled and shipped, we can use the aggregation pipeline. Take a look at the query below.

Press + to interact
MongoDB
Files
[
{
"id": "3001",
"userId": "0001",
"orderDate": "2024-11-21T06:32:47.383235",
"items": [
{
"productId": "2049",
"quantity": 3,
"price": 103
},
{
"productId": "2083",
"quantity": 3,
"price": 46
}
],
"totalAmount": 447,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3002",
"userId": "0001",
"orderDate": "2024-09-25T06:32:47.383273",
"items": [
{
"productId": "2045",
"quantity": 3,
"price": 493
},
{
"productId": "2072",
"quantity": 4,
"price": 497
},
{
"productId": "2011",
"quantity": 4,
"price": 937
}
],
"totalAmount": 7215,
"paymentMethod": "PayPal",
"status": "Pending"
},
{
"id": "3003",
"userId": "0001",
"orderDate": "2025-02-27T06:32:47.383294",
"items": [
{
"productId": "2002",
"quantity": 4,
"price": 379
},
{
"productId": "2001",
"quantity": 1,
"price": 184
},
{
"productId": "2012",
"quantity": 2,
"price": 30
}
],
"totalAmount": 1760,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3004",
"userId": "0002",
"orderDate": "2024-05-31T06:32:47.383329",
"items": [
{
"productId": "2035",
"quantity": 4,
"price": 34
},
{
"productId": "2062",
"quantity": 5,
"price": 1159
},
{
"productId": "2019",
"quantity": 5,
"price": 1489
}
],
"totalAmount": 13376,
"paymentMethod": "Cash on delivery",
"status": "Shipped"
},
{
"id": "3005",
"userId": "0002",
"orderDate": "2024-10-19T06:32:47.383360",
"items": [
{
"productId": "2065",
"quantity": 3,
"price": 536
},
{
"productId": "2018",
"quantity": 3,
"price": 438
}
],
"totalAmount": 2922,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3006",
"userId": "0003",
"orderDate": "2024-11-18T06:32:47.383391",
"items": [
{
"productId": "2069",
"quantity": 5,
"price": 60
}
],
"totalAmount": 300,
"paymentMethod": "Credit Card",
"status": "Shipped"
},
{
"id": "3007",
"userId": "0003",
"orderDate": "2024-07-30T06:32:47.383415",
"items": [
{
"productId": "2022",
"quantity": 1,
"price": 393
}
],
"totalAmount": 393,
"paymentMethod": "Cash on delivery",
"status": "Delivered"
},
{
"id": "3008",
"userId": "0003",
"orderDate": "2024-06-22T06:32:47.383440",
"items": [
{
"productId": "2015",
"quantity": 2,
"price": 354
},
{
"productId": "2086",
"quantity": 5,
"price": 603
},
{
"productId": "2093",
"quantity": 2,
"price": 418
}
],
"totalAmount": 4559,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3009",
"userId": "0003",
"orderDate": "2025-04-29T06:32:47.383476",
"items": [
{
"productId": "2048",
"quantity": 1,
"price": 76
}
],
"totalAmount": 76,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3010",
"userId": "0004",
"orderDate": "2025-02-22T06:32:47.383498",
"items": [
{
"productId": "2006",
"quantity": 1,
"price": 59
},
{
"productId": "2054",
"quantity": 3,
"price": 1497
}
],
"totalAmount": 4550,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3011",
"userId": "0005",
"orderDate": "2025-02-10T06:32:47.383524",
"items": [
{
"productId": "2061",
"quantity": 3,
"price": 67
},
{
"productId": "2048",
"quantity": 5,
"price": 76
},
{
"productId": "2060",
"quantity": 5,
"price": 607
}
],
"totalAmount": 3616,
"paymentMethod": "Bank Transfer",
"status": "Pending"
},
{
"id": "3012",
"userId": "0005",
"orderDate": "2024-09-02T06:32:47.383552",
"items": [
{
"productId": "2007",
"quantity": 4,
"price": 1144
},
{
"productId": "2080",
"quantity": 2,
"price": 292
},
{
"productId": "2077",
"quantity": 4,
"price": 213
}
],
"totalAmount": 6012,
"paymentMethod": "Cash on delivery",
"status": "Pending"
},
{
"id": "3013",
"userId": "0005",
"orderDate": "2025-03-14T06:32:47.383572",
"items": [
{
"productId": "2017",
"quantity": 5,
"price": 383
},
{
"productId": "2030",
"quantity": 5,
"price": 233
}
],
"totalAmount": 3080,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3014",
"userId": "0006",
"orderDate": "2024-08-08T06:32:47.383587",
"items": [
{
"productId": "2029",
"quantity": 5,
"price": 14
},
{
"productId": "2054",
"quantity": 5,
"price": 1497
}
],
"totalAmount": 7555,
"paymentMethod": "PayPal",
"status": "Delivered"
},
{
"id": "3015",
"userId": "0006",
"orderDate": "2024-05-15T06:32:47.383602",
"items": [
{
"productId": "2081",
"quantity": 1,
"price": 483
}
],
"totalAmount": 483,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3016",
"userId": "0006",
"orderDate": "2025-03-20T06:32:47.383614",
"items": [
{
"productId": "2020",
"quantity": 3,
"price": 138
},
{
"productId": "2031",
"quantity": 4,
"price": 566
}
],
"totalAmount": 2678,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3017",
"userId": "0008",
"orderDate": "2025-02-24T06:32:47.383627",
"items": [
{
"productId": "2077",
"quantity": 5,
"price": 213
},
{
"productId": "2039",
"quantity": 5,
"price": 415
},
{
"productId": "2095",
"quantity": 1,
"price": 470
}
],
"totalAmount": 3610,
"paymentMethod": "PayPal",
"status": "Cancelled"
},
{
"id": "3018",
"userId": "0008",
"orderDate": "2024-08-31T06:32:47.383643",
"items": [
{
"productId": "2067",
"quantity": 1,
"price": 181
}
],
"totalAmount": 181,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3019",
"userId": "0008",
"orderDate": "2025-01-03T06:32:47.383657",
"items": [
{
"productId": "2044",
"quantity": 4,
"price": 258
},
{
"productId": "2057",
"quantity": 5,
"price": 184
},
{
"productId": "2013",
"quantity": 4,
"price": 401
}
],
"totalAmount": 3556,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3020",
"userId": "0008",
"orderDate": "2025-02-21T06:32:47.383688",
"items": [
{
"productId": "2080",
"quantity": 5,
"price": 292
},
{
"productId": "2062",
"quantity": 4,
"price": 1159
}
],
"totalAmount": 6096,
"paymentMethod": "PayPal",
"status": "Cancelled"
},
{
"id": "3021",
"userId": "0010",
"orderDate": "2025-04-29T06:32:47.383715",
"items": [
{
"productId": "2092",
"quantity": 5,
"price": 1315
}
],
"totalAmount": 6575,
"paymentMethod": "Bank Transfer",
"status": "Pending"
},
{
"id": "3022",
"userId": "0013",
"orderDate": "2025-04-24T06:32:47.383737",
"items": [
{
"productId": "2014",
"quantity": 5,
"price": 244
},
{
"productId": "2053",
"quantity": 4,
"price": 70
}
],
"totalAmount": 1500,
"paymentMethod": "Cash on delivery",
"status": "Pending"
},
{
"id": "3023",
"userId": "0014",
"orderDate": "2025-01-10T06:32:47.383763",
"items": [
{
"productId": "2069",
"quantity": 1,
"price": 60
},
{
"productId": "2006",
"quantity": 4,
"price": 59
}
],
"totalAmount": 296,
"paymentMethod": "Bank Transfer",
"status": "Pending"
},
{
"id": "3024",
"userId": "0014",
"orderDate": "2025-01-30T06:32:47.383788",
"items": [
{
"productId": "2047",
"quantity": 4,
"price": 79
},
{
"productId": "2053",
"quantity": 4,
"price": 70
}
],
"totalAmount": 596,
"paymentMethod": "PayPal",
"status": "Delivered"
},
{
"id": "3025",
"userId": "0014",
"orderDate": "2024-12-23T06:32:47.383816",
"items": [
{
"productId": "2004",
"quantity": 4,
"price": 181
},
{
"productId": "2067",
"quantity": 5,
"price": 181
},
{
"productId": "2023",
"quantity": 3,
"price": 996
}
],
"totalAmount": 4617,
"paymentMethod": "Cash on delivery",
"status": "Shipped"
},
{
"id": "3026",
"userId": "0014",
"orderDate": "2025-02-14T06:32:47.383852",
"items": [
{
"productId": "2097",
"quantity": 5,
"price": 81
},
{
"productId": "2035",
"quantity": 1,
"price": 34
},
{
"productId": "2066",
"quantity": 5,
"price": 109
}
],
"totalAmount": 984,
"paymentMethod": "PayPal",
"status": "Cancelled"
},
{
"id": "3027",
"userId": "0015",
"orderDate": "2024-09-24T06:32:47.383884",
"items": [
{
"productId": "2072",
"quantity": 5,
"price": 497
},
{
"productId": "2087",
"quantity": 5,
"price": 388
},
{
"productId": "2069",
"quantity": 2,
"price": 60
}
],
"totalAmount": 4545,
"paymentMethod": "Cash on delivery",
"status": "Cancelled"
},
{
"id": "3028",
"userId": "0015",
"orderDate": "2024-06-12T06:32:47.383913",
"items": [
{
"productId": "2036",
"quantity": 5,
"price": 120
},
{
"productId": "2004",
"quantity": 4,
"price": 181
},
{
"productId": "2024",
"quantity": 2,
"price": 483
}
],
"totalAmount": 2290,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3029",
"userId": "0016",
"orderDate": "2025-02-28T06:32:47.383950",
"items": [
{
"productId": "2063",
"quantity": 5,
"price": 156
},
{
"productId": "2043",
"quantity": 2,
"price": 581
},
{
"productId": "2004",
"quantity": 5,
"price": 181
}
],
"totalAmount": 2847,
"paymentMethod": "Credit Card",
"status": "Shipped"
},
{
"id": "3030",
"userId": "0017",
"orderDate": "2024-06-17T06:32:47.383984",
"items": [
{
"productId": "2063",
"quantity": 4,
"price": 156
},
{
"productId": "2032",
"quantity": 4,
"price": 379
}
],
"totalAmount": 2140,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3031",
"userId": "0017",
"orderDate": "2024-07-18T06:32:47.384008",
"items": [
{
"productId": "2048",
"quantity": 2,
"price": 76
},
{
"productId": "2022",
"quantity": 1,
"price": 393
},
{
"productId": "2032",
"quantity": 5,
"price": 379
}
],
"totalAmount": 2440,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3032",
"userId": "0017",
"orderDate": "2024-10-08T06:32:47.384027",
"items": [
{
"productId": "2086",
"quantity": 3,
"price": 603
}
],
"totalAmount": 1809,
"paymentMethod": "Credit Card",
"status": "Shipped"
},
{
"id": "3033",
"userId": "0017",
"orderDate": "2024-11-30T06:32:47.384048",
"items": [
{
"productId": "2001",
"quantity": 2,
"price": 184
},
{
"productId": "2083",
"quantity": 4,
"price": 46
},
{
"productId": "2045",
"quantity": 2,
"price": 493
}
],
"totalAmount": 1538,
"paymentMethod": "Bank Transfer",
"status": "Pending"
},
{
"id": "3034",
"userId": "0018",
"orderDate": "2025-04-17T06:32:47.384086",
"items": [
{
"productId": "2098",
"quantity": 1,
"price": 756
},
{
"productId": "2013",
"quantity": 3,
"price": 401
},
{
"productId": "2080",
"quantity": 1,
"price": 292
}
],
"totalAmount": 2251,
"paymentMethod": "Bank Transfer",
"status": "Cancelled"
},
{
"id": "3035",
"userId": "0018",
"orderDate": "2024-07-09T06:32:47.384118",
"items": [
{
"productId": "2024",
"quantity": 3,
"price": 483
},
{
"productId": "2087",
"quantity": 2,
"price": 388
}
],
"totalAmount": 2225,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3036",
"userId": "0018",
"orderDate": "2024-12-03T06:32:47.384142",
"items": [
{
"productId": "2092",
"quantity": 3,
"price": 1315
},
{
"productId": "2002",
"quantity": 5,
"price": 379
}
],
"totalAmount": 5840,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3037",
"userId": "0018",
"orderDate": "2024-12-18T06:32:47.384158",
"items": [
{
"productId": "2045",
"quantity": 5,
"price": 493
}
],
"totalAmount": 2465,
"paymentMethod": "PayPal",
"status": "Pending"
},
{
"id": "3038",
"userId": "0019",
"orderDate": "2025-03-14T06:32:47.384170",
"items": [
{
"productId": "2009",
"quantity": 2,
"price": 1073
},
{
"productId": "2061",
"quantity": 3,
"price": 67
}
],
"totalAmount": 2347,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3039",
"userId": "0019",
"orderDate": "2024-10-06T06:32:47.384186",
"items": [
{
"productId": "2069",
"quantity": 2,
"price": 60
},
{
"productId": "2029",
"quantity": 1,
"price": 14
}
],
"totalAmount": 134,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3040",
"userId": "0019",
"orderDate": "2024-10-11T06:32:47.384199",
"items": [
{
"productId": "2059",
"quantity": 3,
"price": 140
},
{
"productId": "2040",
"quantity": 5,
"price": 176
}
],
"totalAmount": 1300,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3041",
"userId": "0019",
"orderDate": "2024-08-28T06:32:47.384213",
"items": [
{
"productId": "2012",
"quantity": 1,
"price": 30
},
{
"productId": "2063",
"quantity": 4,
"price": 156
},
{
"productId": "2057",
"quantity": 5,
"price": 184
}
],
"totalAmount": 1574,
"paymentMethod": "PayPal",
"status": "Pending"
},
{
"id": "3042",
"userId": "0020",
"orderDate": "2024-05-22T06:32:47.384233",
"items": [
{
"productId": "2098",
"quantity": 3,
"price": 756
},
{
"productId": "2031",
"quantity": 3,
"price": 566
},
{
"productId": "2052",
"quantity": 2,
"price": 1013
}
],
"totalAmount": 5992,
"paymentMethod": "PayPal",
"status": "Cancelled"
},
{
"id": "3043",
"userId": "0020",
"orderDate": "2024-12-08T06:32:47.384252",
"items": [
{
"productId": "2065",
"quantity": 4,
"price": 536
},
{
"productId": "2078",
"quantity": 3,
"price": 973
},
{
"productId": "2040",
"quantity": 4,
"price": 176
}
],
"totalAmount": 5767,
"paymentMethod": "Cash on delivery",
"status": "Delivered"
},
{
"id": "3044",
"userId": "0021",
"orderDate": "2025-04-10T06:32:47.384269",
"items": [
{
"productId": "2012",
"quantity": 4,
"price": 30
},
{
"productId": "2039",
"quantity": 1,
"price": 415
},
{
"productId": "2076",
"quantity": 1,
"price": 371
}
],
"totalAmount": 906,
"paymentMethod": "Bank Transfer",
"status": "Cancelled"
},
{
"id": "3045",
"userId": "0021",
"orderDate": "2024-07-05T06:32:47.384294",
"items": [
{
"productId": "2039",
"quantity": 2,
"price": 415
},
{
"productId": "2068",
"quantity": 5,
"price": 44
},
{
"productId": "2050",
"quantity": 1,
"price": 340
}
],
"totalAmount": 1390,
"paymentMethod": "PayPal",
"status": "Cancelled"
},
{
"id": "3046",
"userId": "0022",
"orderDate": "2024-08-02T06:32:47.384321",
"items": [
{
"productId": "2045",
"quantity": 2,
"price": 493
}
],
"totalAmount": 986,
"paymentMethod": "Credit Card",
"status": "Pending"
},
{
"id": "3047",
"userId": "0022",
"orderDate": "2024-09-19T06:32:47.384337",
"items": [
{
"productId": "2049",
"quantity": 2,
"price": 103
}
],
"totalAmount": 206,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3048",
"userId": "0022",
"orderDate": "2025-04-11T06:32:47.384352",
"items": [
{
"productId": "2090",
"quantity": 5,
"price": 949
},
{
"productId": "2018",
"quantity": 1,
"price": 438
},
{
"productId": "2015",
"quantity": 4,
"price": 354
}
],
"totalAmount": 6599,
"paymentMethod": "Bank Transfer",
"status": "Cancelled"
},
{
"id": "3049",
"userId": "0022",
"orderDate": "2024-11-04T06:32:47.384369",
"items": [
{
"productId": "2006",
"quantity": 5,
"price": 59
},
{
"productId": "2006",
"quantity": 4,
"price": 59
}
],
"totalAmount": 531,
"paymentMethod": "Bank Transfer",
"status": "Cancelled"
},
{
"id": "3050",
"userId": "0023",
"orderDate": "2024-06-07T06:32:47.384383",
"items": [
{
"productId": "2003",
"quantity": 1,
"price": 337
}
],
"totalAmount": 337,
"paymentMethod": "Bank Transfer",
"status": "Cancelled"
},
{
"id": "3051",
"userId": "0023",
"orderDate": "2024-08-01T06:32:47.384395",
"items": [
{
"productId": "2076",
"quantity": 1,
"price": 371
}
],
"totalAmount": 371,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3052",
"userId": "0023",
"orderDate": "2024-10-04T06:32:47.384407",
"items": [
{
"productId": "2064",
"quantity": 1,
"price": 71
},
{
"productId": "2024",
"quantity": 3,
"price": 483
}
],
"totalAmount": 1520,
"paymentMethod": "Cash on delivery",
"status": "Delivered"
},
{
"id": "3053",
"userId": "0025",
"orderDate": "2024-08-03T06:32:47.384422",
"items": [
{
"productId": "2059",
"quantity": 1,
"price": 140
}
],
"totalAmount": 140,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3054",
"userId": "0025",
"orderDate": "2024-09-16T06:32:47.384436",
"items": [
{
"productId": "2007",
"quantity": 1,
"price": 1144
},
{
"productId": "2088",
"quantity": 2,
"price": 77
},
{
"productId": "2009",
"quantity": 2,
"price": 1073
}
],
"totalAmount": 3444,
"paymentMethod": "Credit Card",
"status": "Shipped"
},
{
"id": "3055",
"userId": "0025",
"orderDate": "2025-03-19T06:32:47.384453",
"items": [
{
"productId": "2040",
"quantity": 4,
"price": 176
},
{
"productId": "2034",
"quantity": 5,
"price": 590
}
],
"totalAmount": 3654,
"paymentMethod": "PayPal",
"status": "Pending"
},
{
"id": "3056",
"userId": "0025",
"orderDate": "2024-10-29T06:32:47.384468",
"items": [
{
"productId": "2081",
"quantity": 1,
"price": 483
},
{
"productId": "2044",
"quantity": 1,
"price": 258
}
],
"totalAmount": 741,
"paymentMethod": "PayPal",
"status": "Delivered"
},
{
"id": "3057",
"userId": "0026",
"orderDate": "2024-07-07T06:32:47.384481",
"items": [
{
"productId": "2021",
"quantity": 2,
"price": 360
},
{
"productId": "2086",
"quantity": 2,
"price": 603
}
],
"totalAmount": 1926,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3058",
"userId": "0026",
"orderDate": "2024-09-03T06:32:47.384504",
"items": [
{
"productId": "2012",
"quantity": 2,
"price": 30
},
{
"productId": "2078",
"quantity": 5,
"price": 973
}
],
"totalAmount": 4925,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3059",
"userId": "0026",
"orderDate": "2024-11-09T06:32:47.384543",
"items": [
{
"productId": "2083",
"quantity": 2,
"price": 46
}
],
"totalAmount": 92,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3060",
"userId": "0026",
"orderDate": "2025-01-12T06:32:47.384566",
"items": [
{
"productId": "2056",
"quantity": 2,
"price": 1467
},
{
"productId": "2099",
"quantity": 4,
"price": 318
}
],
"totalAmount": 4206,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3061",
"userId": "0027",
"orderDate": "2024-12-02T06:32:47.384591",
"items": [
{
"productId": "2047",
"quantity": 2,
"price": 79
},
{
"productId": "2054",
"quantity": 5,
"price": 1497
},
{
"productId": "2041",
"quantity": 2,
"price": 164
}
],
"totalAmount": 7971,
"paymentMethod": "Bank Transfer",
"status": "Cancelled"
},
{
"id": "3062",
"userId": "0027",
"orderDate": "2025-04-21T06:32:47.384620",
"items": [
{
"productId": "2013",
"quantity": 3,
"price": 401
},
{
"productId": "2051",
"quantity": 4,
"price": 243
},
{
"productId": "2020",
"quantity": 5,
"price": 138
}
],
"totalAmount": 2865,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3063",
"userId": "0027",
"orderDate": "2024-08-29T06:32:47.384645",
"items": [
{
"productId": "2020",
"quantity": 2,
"price": 138
},
{
"productId": "2052",
"quantity": 4,
"price": 1013
},
{
"productId": "2061",
"quantity": 2,
"price": 67
}
],
"totalAmount": 4462,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3064",
"userId": "0027",
"orderDate": "2024-07-08T06:32:47.384690",
"items": [
{
"productId": "2065",
"quantity": 3,
"price": 536
},
{
"productId": "2007",
"quantity": 4,
"price": 1144
}
],
"totalAmount": 6184,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3065",
"userId": "0029",
"orderDate": "2025-03-07T06:32:47.384723",
"items": [
{
"productId": "2095",
"quantity": 1,
"price": 470
},
{
"productId": "2097",
"quantity": 2,
"price": 81
},
{
"productId": "2069",
"quantity": 1,
"price": 60
}
],
"totalAmount": 692,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3066",
"userId": "0029",
"orderDate": "2024-08-21T06:32:47.384752",
"items": [
{
"productId": "2048",
"quantity": 4,
"price": 76
},
{
"productId": "2096",
"quantity": 4,
"price": 940
},
{
"productId": "2018",
"quantity": 5,
"price": 438
}
],
"totalAmount": 6254,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3067",
"userId": "0030",
"orderDate": "2024-12-18T06:32:47.384771",
"items": [
{
"productId": "2007",
"quantity": 1,
"price": 1144
},
{
"productId": "2082",
"quantity": 2,
"price": 182
}
],
"totalAmount": 1508,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3068",
"userId": "0030",
"orderDate": "2024-08-02T06:32:47.384784",
"items": [
{
"productId": "2050",
"quantity": 3,
"price": 340
}
],
"totalAmount": 1020,
"paymentMethod": "Credit Card",
"status": "Shipped"
},
{
"id": "3069",
"userId": "0030",
"orderDate": "2024-07-11T06:32:47.384808",
"items": [
{
"productId": "2049",
"quantity": 3,
"price": 103
},
{
"productId": "2012",
"quantity": 3,
"price": 30
}
],
"totalAmount": 399,
"paymentMethod": "Credit Card",
"status": "Pending"
},
{
"id": "3070",
"userId": "0032",
"orderDate": "2025-01-28T06:32:47.384825",
"items": [
{
"productId": "2086",
"quantity": 4,
"price": 603
}
],
"totalAmount": 2412,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3071",
"userId": "0032",
"orderDate": "2025-01-03T06:32:47.384838",
"items": [
{
"productId": "2086",
"quantity": 3,
"price": 603
},
{
"productId": "2050",
"quantity": 5,
"price": 340
},
{
"productId": "2041",
"quantity": 5,
"price": 164
}
],
"totalAmount": 4329,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3072",
"userId": "0033",
"orderDate": "2025-02-10T06:32:47.384854",
"items": [
{
"productId": "2012",
"quantity": 5,
"price": 30
},
{
"productId": "2072",
"quantity": 1,
"price": 497
},
{
"productId": "2096",
"quantity": 3,
"price": 940
}
],
"totalAmount": 3467,
"paymentMethod": "Bank Transfer",
"status": "Pending"
},
{
"id": "3073",
"userId": "0033",
"orderDate": "2025-01-27T06:32:47.384869",
"items": [
{
"productId": "2034",
"quantity": 5,
"price": 590
}
],
"totalAmount": 2950,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3074",
"userId": "0033",
"orderDate": "2024-07-26T06:32:47.384884",
"items": [
{
"productId": "2088",
"quantity": 2,
"price": 77
}
],
"totalAmount": 154,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3075",
"userId": "0033",
"orderDate": "2024-11-04T06:32:47.384900",
"items": [
{
"productId": "2062",
"quantity": 3,
"price": 1159
},
{
"productId": "2100",
"quantity": 1,
"price": 532
},
{
"productId": "2088",
"quantity": 3,
"price": 77
}
],
"totalAmount": 4240,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3076",
"userId": "0035",
"orderDate": "2024-09-02T06:32:47.384918",
"items": [
{
"productId": "2068",
"quantity": 1,
"price": 44
},
{
"productId": "2030",
"quantity": 5,
"price": 233
},
{
"productId": "2071",
"quantity": 1,
"price": 845
}
],
"totalAmount": 2054,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3077",
"userId": "0035",
"orderDate": "2024-08-27T06:32:47.384934",
"items": [
{
"productId": "2043",
"quantity": 2,
"price": 581
},
{
"productId": "2018",
"quantity": 2,
"price": 438
},
{
"productId": "2089",
"quantity": 1,
"price": 171
}
],
"totalAmount": 2209,
"paymentMethod": "PayPal",
"status": "Cancelled"
},
{
"id": "3078",
"userId": "0035",
"orderDate": "2025-03-02T06:32:47.384951",
"items": [
{
"productId": "2043",
"quantity": 4,
"price": 581
},
{
"productId": "2057",
"quantity": 3,
"price": 184
}
],
"totalAmount": 2876,
"paymentMethod": "Bank Transfer",
"status": "Delivered"
},
{
"id": "3079",
"userId": "0037",
"orderDate": "2025-02-02T06:32:47.384977",
"items": [
{
"productId": "2081",
"quantity": 1,
"price": 483
}
],
"totalAmount": 483,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3080",
"userId": "0037",
"orderDate": "2025-05-05T06:32:47.385006",
"items": [
{
"productId": "2017",
"quantity": 1,
"price": 383
}
],
"totalAmount": 383,
"paymentMethod": "PayPal",
"status": "Delivered"
},
{
"id": "3081",
"userId": "0037",
"orderDate": "2024-12-17T06:32:47.385023",
"items": [
{
"productId": "2041",
"quantity": 2,
"price": 164
}
],
"totalAmount": 328,
"paymentMethod": "Credit Card",
"status": "Pending"
},
{
"id": "3082",
"userId": "0037",
"orderDate": "2025-05-13T06:32:47.385035",
"items": [
{
"productId": "2027",
"quantity": 3,
"price": 104
},
{
"productId": "2086",
"quantity": 5,
"price": 603
}
],
"totalAmount": 3327,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3083",
"userId": "0037",
"orderDate": "2025-01-09T06:32:47.385048",
"items": [
{
"productId": "2044",
"quantity": 3,
"price": 258
},
{
"productId": "2042",
"quantity": 4,
"price": 109
}
],
"totalAmount": 1210,
"paymentMethod": "Bank Transfer",
"status": "Cancelled"
},
{
"id": "3084",
"userId": "0040",
"orderDate": "2024-10-14T06:32:47.385062",
"items": [
{
"productId": "2040",
"quantity": 3,
"price": 176
}
],
"totalAmount": 528,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3085",
"userId": "0040",
"orderDate": "2024-07-09T06:32:47.385073",
"items": [
{
"productId": "2073",
"quantity": 1,
"price": 306
},
{
"productId": "2017",
"quantity": 5,
"price": 383
},
{
"productId": "2011",
"quantity": 3,
"price": 937
}
],
"totalAmount": 5032,
"paymentMethod": "PayPal",
"status": "Cancelled"
},
{
"id": "3086",
"userId": "0040",
"orderDate": "2024-06-09T06:32:47.385168",
"items": [
{
"productId": "2052",
"quantity": 4,
"price": 1013
}
],
"totalAmount": 4052,
"paymentMethod": "PayPal",
"status": "Delivered"
},
{
"id": "3087",
"userId": "0040",
"orderDate": "2024-06-12T06:32:47.385201",
"items": [
{
"productId": "2096",
"quantity": 1,
"price": 940
},
{
"productId": "2056",
"quantity": 2,
"price": 1467
}
],
"totalAmount": 3874,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3088",
"userId": "0040",
"orderDate": "2024-06-17T06:32:47.385221",
"items": [
{
"productId": "2086",
"quantity": 4,
"price": 603
},
{
"productId": "2015",
"quantity": 1,
"price": 354
},
{
"productId": "2074",
"quantity": 2,
"price": 94
}
],
"totalAmount": 2954,
"paymentMethod": "Credit Card",
"status": "Shipped"
},
{
"id": "3089",
"userId": "0041",
"orderDate": "2025-02-17T06:32:47.385237",
"items": [
{
"productId": "2068",
"quantity": 5,
"price": 44
}
],
"totalAmount": 220,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3090",
"userId": "0041",
"orderDate": "2025-04-16T06:32:47.385248",
"items": [
{
"productId": "2003",
"quantity": 4,
"price": 337
}
],
"totalAmount": 1348,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3091",
"userId": "0041",
"orderDate": "2025-05-02T06:32:47.385267",
"items": [
{
"productId": "2020",
"quantity": 4,
"price": 138
}
],
"totalAmount": 552,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3092",
"userId": "0042",
"orderDate": "2025-02-22T06:32:47.385287",
"items": [
{
"productId": "2052",
"quantity": 4,
"price": 1013
}
],
"totalAmount": 4052,
"paymentMethod": "Credit Card",
"status": "Cancelled"
},
{
"id": "3093",
"userId": "0042",
"orderDate": "2025-01-13T06:32:47.385313",
"items": [
{
"productId": "2081",
"quantity": 4,
"price": 483
}
],
"totalAmount": 1932,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3094",
"userId": "0042",
"orderDate": "2024-11-15T06:32:47.385329",
"items": [
{
"productId": "2049",
"quantity": 5,
"price": 103
},
{
"productId": "2063",
"quantity": 5,
"price": 156
}
],
"totalAmount": 1295,
"paymentMethod": "Bank Transfer",
"status": "Shipped"
},
{
"id": "3095",
"userId": "0044",
"orderDate": "2025-03-29T06:32:47.385433",
"items": [
{
"productId": "2100",
"quantity": 2,
"price": 532
},
{
"productId": "2031",
"quantity": 3,
"price": 566
},
{
"productId": "2003",
"quantity": 2,
"price": 337
}
],
"totalAmount": 3436,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3096",
"userId": "0044",
"orderDate": "2024-08-10T06:32:47.385457",
"items": [
{
"productId": "2048",
"quantity": 5,
"price": 76
},
{
"productId": "2034",
"quantity": 5,
"price": 590
},
{
"productId": "2078",
"quantity": 3,
"price": 973
}
],
"totalAmount": 6249,
"paymentMethod": "Credit Card",
"status": "Pending"
},
{
"id": "3097",
"userId": "0044",
"orderDate": "2024-09-10T06:32:47.385486",
"items": [
{
"productId": "2029",
"quantity": 2,
"price": 14
},
{
"productId": "2073",
"quantity": 3,
"price": 306
}
],
"totalAmount": 946,
"paymentMethod": "Credit Card",
"status": "Delivered"
},
{
"id": "3098",
"userId": "0044",
"orderDate": "2025-03-13T06:32:47.385503",
"items": [
{
"productId": "2098",
"quantity": 2,
"price": 756
},
{
"productId": "2023",
"quantity": 1,
"price": 996
},
{
"productId": "2047",
"quantity": 2,
"price": 79
}
],
"totalAmount": 2666,
"paymentMethod": "PayPal",
"status": "Shipped"
},
{
"id": "3099",
"userId": "0044",
"orderDate": "2025-02-01T06:32:47.385520",
"items": [
{
"productId": "2074",
"quantity": 3,
"price": 94
},
{
"productId": "2048",
"quantity": 1,
"price": 76
}
],
"totalAmount": 358,
"paymentMethod": "Bank Transfer",
"status": "Pending"
},
{
"id": "3100",
"userId": "0045",
"orderDate": "2024-06-11T06:32:47.385533",
"items": [
{
"productId": "2034",
"quantity": 2,
"price": 590
},
{
"productId": "2035",
"quantity": 1,
"price": 34
},
{
"productId": "2056",
"quantity": 4,
"price": 1467
}
],
"totalAmount": 7082,
"paymentMethod": "Credit Card",
"status": "Shipped"
}
]

Let's break it down. The task can be divided into two stages:

  1. Filter the document(s) from the orders collection where status is “Shipped” or “Cancelled”

  2. Count the total number of shipped orders and cancelled orders, separately.

Note that the second stage is dependent on the first stage, i.e., the output of the first stage serves as the input to the second stage. 

In ...