UNPKG

mingo

Version:

MongoDB query language for in-memory objects

13 lines (12 loc) 400 B
import { PipelineOperator } 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}. * * @param collection * @param expr * @param _options * @returns */ export declare const $skip: PipelineOperator;