> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: skip(skip: number) # Method package: wixData # Method menu location: wixData --> WixDataDistinct --> skip # Method Link: https://dev.wix.com/docs/velo/apis/wix-data/wix-data-distinct/skip.md # Method Description: Skips the specified number of items before returning the distinct query results. The `skip()` method skips the specified number of results before returning the rest. For example, if you query a collection and 50 items match your query, but you set `skip` to 10, the results skip the first 10 matching items and return the 11th through 50th items. By default, `skip` is set to 0. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Add a skip to the results of a distinct query ```javascript // Add a skip to a distinct query let newDistinctQuery = query.distinct.skip(10); ``` ## Add a skip to the results of a distinct query ```javascript // In data.js export function myCollection_beforeDistinct(distinct, context) { // Skip the first 10 query results distinct = distinct.skip(10); return distinct; } ``` ---