> 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: queryCategories(options: QueryCategoriesOptions) # Method package: wixForumV2 # Method menu location: wixForumV2 --> categories --> queryCategories # Method Link: https://dev.wix.com/docs/velo/apis/wix-forum-v2/categories/query-categories.md # Method Description: Retrieves a list of categories, given the provided paging, filtering, and sorting. Query Categories runs with these defaults, which you can override: - `paging.limit` is `10` - `paging.offset` is `0` For field support for filters and sorting, see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/rest/api-reference/wix-forum/wix-forum/filter-and-sort.md#category-api-supported-filters-and-sorting). To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging.md), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection). # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## queryCategories example for dashboard page code ```javascript import { categories } from 'wix-forum.v2'; async function queryCategories(options) { try { const result = await categories.queryCategories(options); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## queryCategories example for exporting from backend code ```javascript import { categories } from 'wix-forum.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedQueryCategories = elevate(categories.queryCategories); export const queryCategories = webMethod( Permissions.Anyone, async (options) => { try { const result = await elevatedQueryCategories(options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---