Skip
Skips over the specified number of records that pass into the stage and passes the remaining records to the next stage in the pipeline.
Skip takes a positive integer that specifies the number of records to skip.
10 // return all but the first 10 records (see warning about ordering)
Warning about ordering
Records aren't guaranteed to return in any particular or consistent ordering unless:
- a Sort stage exists earlier in the pipeline.
- That sort stage sorts on a field or fields with unique values.