> 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: limit(limit: number) # Method package: wixData # Method menu location: wixData --> WixDataDistinct --> limit # Method Link: https://dev.wix.com/docs/velo/apis/wix-data/wix-data-distinct/limit.md # Method Description: Limits the number of items the distinct query returns. The `limit()` method defines the maximum number of results a distinct query returns in each page. Only one page of results is retrieved at a time. Use the [`next()`](https://dev.wix.com/docs/velo/apis/wix-data/wix-data-query-result/next.md) and [`prev()`](https://dev.wix.com/docs/velo/apis/wix-data/wix-data-query-result/prev.md) methods to navigate the pages of a query result. By default, `limit` is set to `50`. The maximum value that `limit()` can accept is `1000`. > **Note** : For some [Wix app collections](https://dev.wix.com/docs/develop-websites/articles/databases/wix-data/collections/working-with-wix-app-collections-and-code.md), the maximum value you can specify to `limit()` is lower than `1000`. For example, the maximum limit for the Wix `Stores/Product` collection is 100. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Add a limit to the results of a distinct query ```javascript // Limit the number of results of a distinct query let distinctQuery = query.distinct.limit(10); ``` ## Add a limit to the results of a distinct query ```javascript // In data.js export function myCollection_beforeDistinct(distinct, context) { // Limit the number of results of the distinct query distinct = distinct.limit(25); return distinct; } ``` ---