> 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: wixPricingPlansBackend # Method menu location: wixPricingPlansBackend --> PublicPlansQueryResult --> next # Method Link: https://dev.wix.com/docs/velo/apis/wix-pricing-plans-backend/public-plans-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-pricing-plans-backend/public-plans-query-builder/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 `PublicPlansQueryResult` 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 query result ```javascript oldResults.next() .then((results) => { const newResults = results; const items = newResults.items; const firstItem = items[0]; const totalCount = newResults.totalCount; const pageSize = newResults.pageSize; const currentPage = newResults.currentPage; const totalPages = newResults.totalPages; const hasNext = newResults.hasNext(); const hasPrev = newResults.hasPrev(); const length = newResults.length; const query = newResults.query; }) .catch((error) => { const queryError = error; }); ``` ## Iterate through all pages of query results ```javascript import wixPricingPlansBackend from 'wix-pricing-plans-backend'; async function retrieveAllItems() { const allItems = []; const results = await wixPricingPlansBackend.queryPublicPlans() .limit(1000) .find(); allItems.push(results.items); while (results.hasNext()) { results = await results.next(); allItems.push(results.items); } return allItems; } ``` ---