> 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: queryBackInStockNotificationRequests() # Method package: wixEcomBackend # Method menu location: wixEcomBackend --> backInStockNotifications --> queryBackInStockNotificationRequests # Method Link: https://dev.wix.com/docs/velo/apis/wix-ecom-backend/back-in-stock-notifications/query-back-in-stock-notification-requests.md # Method Description: Creates a query to retrieve a list of back in stock notification requests. The `queryBackInStockNotificationRequests()` method builds a query to retrieve a list of back in stock notification requests and returns a `RequestsQueryBuilder` object. The returned object contains the query definition, which is typically used to run the query using the `find()` method. You can refine the query by chaining `RequestsQueryBuilder` methods onto the query. `RequestsQueryBuilder` methods enable you to sort, filter, and control the results that `queryBackInStockNotificationRequests()` returns. The following `RequestsQueryBuilder` methods are supported for `queryBackInStockNotificationRequests()`. For a full description of the Requests object, see the object returned for the `items` property in `RequestsQueryResult`." |PROPERTY |SUPPORTED FILTERS & SORTING |:---:|:---:| |`_id`|[`eq()`](/requests-query-builder/eq),[`ne()`](/requests-query-builder/ne),[`exists()`](/requests-query-builder/exists),[`in()`](/requests-query-builder/in),[`hasSome()`](/requests-query-builder/has-some),[`startsWith()`](/requests-query-builder/starts-with),[`ascending()`](/requests-query-builder/ascending),[`descending()`](/requests-query-builder/descending)| |`contactId`|[`eq()`](/requests-query-builder/eq),[`ne()`](/requests-query-builder/ne),[`exists()`](/requests-query-builder/exists),[`in()`](/requests-query-builder/in),[`hasSome()`](/requests-query-builder/has-some),[`startsWith()`](/requests-query-builder/starts-with),[`ascending()`](/requests-query-builder/ascending),[`descending()`](/requests-query-builder/descending)| |`status`|[`eq()`](/requests-query-builder/eq),[`ne()`](/requests-query-builder/ne),[`exists()`](/requests-query-builder/exists),[`in()`](/requests-query-builder/in),[`hasSome()`](/requests-query-builder/has-some),[`ascending()`](/requests-query-builder/ascending),[`descending()`](/requests-query-builder/descending)| |`autoNotified`|[`eq()`](/requests-query-builder/eq),[`ne()`](/requests-query-builder/ne),[`exists()`](/requests-query-builder/exists),[`in()`](/requests-query-builder/in),[`hasSome()`](/requests-query-builder/has-some),[`ascending()`](/requests-query-builder/ascending),[`descending()`](/requests-query-builder/descending)| |`_createdDate`|[`eq()`](/requests-query-builder/eq),[`ne()`](/requests-query-builder/ne),[`exists()`](/requests-query-builder/exists),[`in()`](/requests-query-builder/in),[`hasSome()`](/requests-query-builder/has-some),[`lt()`](/requests-query-builder/lt),[`le()`](/requests-query-builder/le),[`gt()`](/requests-query-builder/gt),[`ge()`](/requests-query-builder/ge),[`ascending()`](/requests-query-builder/ascending),[`descending()`](/requests-query-builder/descending)| |`itemUrl`|[`eq()`](/requests-query-builder/eq),[`ne()`](/requests-query-builder/ne),[`exists()`](/requests-query-builder/exists),[`in()`](/requests-query-builder/in),[`hasSome()`](/requests-query-builder/has-some),[`startsWith()`](/requests-query-builder/starts-with),[`ascending()`](/requests-query-builder/ascending),[`descending()`](/requests-query-builder/descending)| # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## queryBackInStockNotificationRequests example for dashboard page code ```javascript import { backInStockNotifications } from 'wix-ecom-backend'; async function queryBackInStockNotificationRequests() { const { items } = backInStockNotifications.queryBackInStockNotificationRequests().find(); } ``` ## queryBackInStockNotificationRequests example for exporting from backend code ```javascript import { backInStockNotifications } from 'wix-ecom-backend'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedQueryBackInStockNotificationRequests = elevate(backInStockNotifications.queryBackInStockNotificationRequests); export const queryBackInStockNotificationRequests = webMethod( Permissions.Anyone, async (query) => { try { const result = await elevatedQueryBackInStockNotificationRequests(query); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---