mingo
Version:
MongoDB query language for in-memory objects
9 lines (8 loc) • 404 B
TypeScript
import { Iterator } from "../../lazy";
import { Options } from "../../types";
/**
* Skips the first n documents where n is the specified skip number and passes the remaining documents unmodified to the pipeline.
*
* See {@link https://www.mongodb.com/docs/manual/reference/operator/aggregation/skip usage}.
*/
export declare function $skip(coll: Iterator, expr: number, _options: Options): Iterator;