Pipeline Practice

Find completed orders

A pipeline is an ordered array of stages. `$match` narrows the stream by keeping only documents that satisfy a query.

Return only orders whose status is `completed`.

Expected result: 9 complete order documents, in their existing order.

Example pipeline syntax

[
  // Add your first stage here
]