Concept Flow - $limit and $skip stages
Start with full dataset
Apply $skip: remove first N documents
Apply $limit: keep only next M documents
Output the resulting documents
The data flows first through $skip which removes a number of documents from the start, then through $limit which keeps only a set number of documents after skipping.