> 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: wixSearch # Method menu location: wixSearch --> WixSearchResult --> next # Method Link: https://dev.wix.com/docs/velo/apis/wix-search/wix-search-result/next.md # Method Description: Retrieves the next page of search results. The `next()` function retrieves the next page of search results. The page size is defined by the [`limit()`](https://dev.wix.com/docs/velo/api-reference/wix-search/wix-search-builder/limit.md) function, can be retrieved using the [`pageSize`](#pageSize) property. You navigate through pages using the [`prev()`](#prev) and [`next()`](#next) functions. If items are added or removed between calls to `next()`, the values returned by `WixSearchResult` may change. # 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 search result ```javascript oldResults.next() .then( (results) => { let newResults = results; let documents = newResults.documents; let firstDocument = documents[0]; let facets = results.facets; 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; } ) .catch( (error) => { console.log(error); } ); ``` ## Iterate through all pages of search results ```javascript async function retrieveAllDocuments(phrase){ let allDocuments = []; let results = await wixSearch.search(phrase) .limit(1000) .find(); allDocuments.push(results.documents); while(results.hasNext()) { results = await results.next(); allDocuments.push(results.documents); } return allDocuments; } ``` ---