> 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(field: string, value: any) # Method package: wixSearch # Method menu location: wixSearch --> WixSearchFilterBuilder --> gt # Method Link: https://dev.wix.com/docs/velo/apis/wix-search/wix-search-filter-builder/gt.md # Method Description: Creates a search filter for matching documents whose specified field value is greater than the specified value. The `gt()` function is chained to a `WixSearchFilterBuilder` to create a `WixSearchFilter`. You can use the filter to match documents where the value of the specified field is greater than the specified `value`. `gt()` 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 field contains a number as a String, that value will be compared alphabetically and not numerically. Documents that do not have a value for the specified field are ranked lowest. The following types of fields 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. ## Create a greater than search filter ```javascript import wixSearch from 'wix-search'; // ... const gtFilter = wixSearch .filter() .gt("viewCount", 50); ``` ## Create multiple search filters and add them to a search ```javascript import wixSearch from 'wix-search'; // ... const filterBuilder = wixSearch.filter(); const gtJanFilter = filterBuilder.gt("lastActivityDate", "2020-01-01T00:00:00.000Z"); const ltFebFilter = filterBuilder.lt("lastActivityDate", "2020-02-01T00:00:00.000Z"); const gtAprilFilter = filterBuilder.gt("lastActivityDate", "2020-04-01T00:00:00.000Z"); const ltMayFilter = filterBuilder.lt("lastActivityDate", "2020-05-01T00:00:00.000Z"); const januaryFilter = filterBuilder.and(gtJanFilter, ltFebFilter); const aprilFilter = filterBuilder.and(gtAprilFilter, ltMayFilter); const dateFilter = filterBuilder.or(januaryFilter, aprilFilter) const viewFilter = filterBuilder.gt("viewCount", 200) wixSearch.search(phrase) .documentType("Forum/Content") .and(dateFilter, viewFilter) .find() .then( (results) => { if(results.documents.length > 0) { let documents = results.documents; } else { console.log("No matching results"); } }) .catch( (error) => { console.log(error); }); ``` ## Create filters and add them to a search ```javascript import wixSearch from 'wix-search'; // ... const filterBuilder = wixSearch.filter(); const gtFilter = filterBuilder.gt("lastActivityDate", "2020-01-01T00:00:00.000Z"); const hasAllFilter = filterBuilder.hasAll("hashTags", ["summer", "fun"]); const eqFilter = filterBuilder.eq(categoryId, "5df7504fa8a9b30017fc1053"); wixSearch.search(phrase) .documentType("Forum/Content") .and(gtFilter, hasAllFilter, eqFilter) .find() .then( (results) => { if(results.documents.length > 0) { let documents = results.documents; } else { console.log("No matching results"); } }) .catch( (error) => { console.log(error); }); ``` ---