diff --git a/docs/30-simple-queries/5-combining-them-all.mdx b/docs/30-simple-queries/5-combining-them-all.mdx index e247207..da35eb7 100644 --- a/docs/30-simple-queries/5-combining-them-all.mdx +++ b/docs/30-simple-queries/5-combining-them-all.mdx @@ -1,7 +1,7 @@ import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -# 👐 Combining stages +# 👐 Combining Stages Up until now, we've just been using one stage in the pipeline. But the power of the aggregation pipeline is that we can use many stages, and the output of one will be the input of the next. Think of it as UNIX pipes or using functional programming with `map`, `filter`, `reduce`, `flatmap`, etc.