> 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: gt(propertyName: string, value: any) # Method package: wixPricingPlansBackend # Method menu location: wixPricingPlansBackend --> PublicPlansQueryBuilder --> gt # Method Link: https://dev.wix.com/docs/velo/apis/wix-pricing-plans-backend/public-plans-query-builder/gt.md # Method Description: Refines a query to match items whose specified property value is greater than the specified value. The `gt()` function refines a `PublicPlansQueryBuilder` to only match items where the value of the specified property is greater than the specified `value`. It only matches values of the same type. For example, a number value stored as a String type does not match the same number stored as a Number type. If a property contains a number as a String, that value will be compared alphabetically and not numerically. Items that do not have a value for the specified property are ranked lowest. When sorting, ascending order is: numbers, followed by symbols, and then letters. The following types of properties can be compared: + Number: Compares numerically. + Date: Compares JavaScript Date objects. + String: Compares lexicographically, so `"text"` is greater than `"Text"`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Add a "greater than" filter to a query ```javascript const query = wixPricingPlansBackend.queryPublicPlans().gt("_updatedDate","2021-01-27T10:00:00.000Z"); ``` ## Create a query, add a "greater than" filter, and run it ```javascript import wixPricingPlansBackend from 'wix-pricing-plans-backend'; // ... wixPricingPlansBackend.queryPublicPlans() .gt("_updatedDate", "2021-01-27T10:00:00.000Z") .find() .then((results) => { if (results.items.length > 0) { const items = results.items; const firstItem = items[0]; const totalCount = results.totalCount; const pageSize = results.pageSize; const currentPage = results.currentPage; const totalPages = results.totalPages; const hasNext = results.hasNext(); const hasPrev = results.hasPrev(); const length = results.length; const query = results.query; } else { // handle case where no matching items found } }) .catch((error) => { const queryError = error; }); ``` ---