> 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: or(filters: Array) # Method package: wixSearch # Method menu location: wixSearch --> WixSearchBuilder --> or # Method Link: https://dev.wix.com/docs/velo/apis/wix-search/wix-search-builder/or.md # Method Description: Refines a search to match documents that meet the condition of any of the specified filters. The `or()` function joins `WixSearchFilters` with an inclusive `or` condition and adds them to a `WixSearchBuilder`. A search with an `or()` returns all the documents that match the condition of any of the filters. If the `or()` function contains a single filter, the filter is applied directly to the `WixSearchBuilder`. If other filtering functions were previously used in the same `WixSearchBuilder` instance, `or()` is applied using an `and` condition with previously set filters. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Create a search, add an or, and run it ```javascript import wixSearch from 'wix-search'; // ... const geLikeFilter = wixSearch .filter() .ge("likeCount", 20) const geViewFilter = wixSearch .filter() .ge("viewCount", 100) wixSearch.search() .documentType("Forum/Content") .or(geLikeFilter, geViewFilter) .find() .then( (results) => { if(results.documents.length > 0) { let documents = results.documents; } else { console.log("No matching results"); } }) .catch( (error) => { console.log(error); }); ``` ---