> 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: prev() # Method package: wixData # Method menu location: wixData --> WixDataQueryReferencedResult --> prev # Method Link: https://dev.wix.com/docs/velo/apis/wix-data/wix-data-query-referenced-result/prev.md # Method Description: Retrieves the previous page of reference query results. The `prev()` function retrieves the previous page of reference query results. The page size is 50 items. Navigate through pages of items with the [`prev()`](#prev) and [`next()`](#next) functions. If items are added or removed between calls to `prev()` the values returned may change. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get the previous page of a query result ```javascript oldResults.prev() .then((results) => { let newResults = results; let items = newResults.items; let firstItem = items[0]; let totalCount = newResults.totalCount; let hasNext = newResults.hasNext(); let hasPrev = newResults.hasPrev(); }) .catch((error) => { let errorMsg = error.message; let code = error.code; }); ``` ---