> 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: queryVariants() # Method package: wixRestaurantsV2 # Method menu location: wixRestaurantsV2 --> itemVariants --> queryVariants # Method Link: https://dev.wix.com/docs/velo/apis/wix-restaurants-v2/menus/item-variants/query-variants.md # Method Description: Creates a query to retrieve a list of item variants. The `queryVariants()` function builds a query to retrieve a list of item variants and returns a `VariantsQueryBuilder` object. The returned object contains the query definition, which is used to run the query using the [`find()`](/item-variants/variants-query-builder/find) function. You can refine the query by chaining `VariantsQueryBuilder` functions onto the query. `VariantsQueryBuilder` functions enable you to filter, sort, and control the results that `queryVariants()` returns. `queryVariants()` runs with the following `VariantsQueryBuilder` defaults, which you can override: * [`limit(200)`](/item-variants/variants-query-builder/limit) The following `VariantsQueryBuilder` functions are supported for `queryVariants()`. For a full description of the item variant object, see the object returned for the [`items`](/item-variants/variants-query-builder/items) property in `VariantsQueryResult`. |PROPERTY |SUPPORTED FILTERS & SORTING |:---:|:---:| |`_id`|[`eq()`](/variants-query-builder/eq),[`ne()`](/variants-query-builder/ne),[`in()`](/variants-query-builder/in)| |`_createdDate`|[`eq()`](/variants-query-builder/eq),[`ne()`](/variants-query-builder/ne),[`gt()`](/variants-query-builder/gt),[`ge()`](/variants-query-builder/ge),[`lt()`](/variants-query-builder/lt),[`le()`](/variants-query-builder/le)| |`_updatedDate`|[`eq()`](/variants-query-builder/eq),[`ne()`](/variants-query-builder/ne),[`gt()`](/variants-query-builder/gt),[`ge()`](/variants-query-builder/ge),[`lt()`](/variants-query-builder/lt),[`le()`](/variants-query-builder/le)| |`name`|[`eq()`](/variants-query-builder/eq),[`ne()`](/variants-query-builder/ne),[`in()`](/variants-query-builder/in)| # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## queryVariants example ```javascript import { itemVariants } from 'wix-restaurants.v2'; async function queryVariants() { const { items } = itemVariants.queryVariants().find(); } ``` ## queryVariants example for exporting from backend code ```javascript import { itemVariants } from 'wix-restaurants.v2'; import { webMethod, Permissions } from 'wix-web-module'; export const queryVariants = webMethod( Permissions.Anyone, async (options) => { try { const result = await itemVariants.queryVariants(options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---