> 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: next() # Method package: wixData # Method menu location: wixData --> WixDataQueryResult --> next # Method Link: https://dev.wix.com/docs/velo/apis/wix-data/wix-data-query-result/next.md # Method Description: Retrieves the next page of query results. The `next()` function retrieves the next page of query results. The page size is defined by the [`limit()`](wix-data.WixDataQuery.html#limit) function, can be retrieved using the [`pageSize`](#pageSize) property, and navigating through pages is done with the [`prev()`](#prev) and [`next()`](#next) functions. If items are added or removed between calls to `next()` the values returned by `WixDataQueryResult` may change. >**Note:** The `next()` function is not supported for Single Item Collections. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get the next page of a query result ```javascript oldResults.next() .then((results) => { let newResults = results; let items = newResults.items; let firstItem = items[0]; let totalCount = newResults.totalCount; let pageSize = newResults.pageSize; let currentPage = newResults.currentPage; let totalPages = newResults.totalPages; let hasNext = newResults.hasNext(); let hasPrev = newResults.hasPrev(); let length = newResults.length; let query = newResults.query; }) .catch((error) => { let errorMsg = error.message; let code = error.code; }); ``` ## Iterate through all pages of query results ```javascript async function retrieveAllItems() { let results = await wixData.query("myCollection") .limit(1000) .find(); let allItems = results.items; while (results.hasNext()) { results = await results.next(); allItems = allItems.concat(results.items); } return allItems; } ``` ---