AggregationSkipOn this pageSkipSkip documents in the collection.Method Signaturepublic skip(value: number): this;Exampleconst users = await aggregate.skip(10).get();It will return all documents in the collection, starting from the 11th document.