> 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: queryRules() # Method package: wixRestaurantsV2 # Method menu location: wixRestaurantsV2 --> serviceFees --> queryRules # Method Link: https://dev.wix.com/docs/velo/apis/wix-restaurants-v2/service-fees/query-rules.md # Method Description: Creates a query to retrieve a list of rules. The `queryRules()` function builds a query to retrieve a list of up to 1,000 rules and returns a `RulesQueryBuilder` object. The returned object contains the query definition which is typically used to run the query using the [`find()`](/service-fees/rules-query-builder/find) function. You can refine the query by chaining `RulesQueryBuilder` functions onto the query. `RulesQueryBuilder` functions enable you to sort, filter, and control the results that `queryRules()` returns. The functions that are chained to `queryRules()` are applied in the order they are called. `queryRules()` runs with the following `RulesQueryBuilder` defaults that you can override: * [`limit(50)`](/service-fees/rules-query-builder/limit) * [`ascending('entityId')`](/service-fees/rules-query-builder/ascending) The following `QueryRulesBuilder` functions are supported for the `queryRules()` function. For a full description of the Rules object, see the object returned for the [`items`](/service-fees/rules-query-builder/items) property in `RulesQueryResult`. |PROPERTY |SUPPORTED FILTERS & SORTING |:---:|:---:| |`_id`|[`eq()`](/rules-query-builder/eq),[`ne()`](/rules-query-builder/ne),[`exists()`](/rules-query-builder/exists),[`in()`](/rules-query-builder/in),[`hasSome()`](/rules-query-builder/has-some),[`startsWith()`](/rules-query-builder/starts-with),[`ascending()`](/rules-query-builder/ascending),[`descending()`](/rules-query-builder/descending)| # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## queryRules example ```javascript import { serviceFees } from 'wix-restaurants.v2'; async function queryRules() { const { items } = serviceFees.queryRules().find(); } ``` ## queryRules example for exporting from backend code ```javascript import { serviceFees } from 'wix-restaurants.v2'; import { webMethod, Permissions } from 'wix-web-module'; export const queryRules = webMethod( Permissions.Anyone, async (query) => { try { const result = await serviceFees.queryRules(query); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---