> 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: and(filters: Array) # Method package: wixSearch # Method menu location: wixSearch --> WixSearchBuilder --> and # Method Link: https://dev.wix.com/docs/velo/apis/wix-search/wix-search-builder/and.md # Method Description: Refines a search to match documents that meet the conditions of all of the specified filters. The `and()` function joins `WixSearchFilters` with an inclusive `and` condition and adds them to a `WixSearchBuilder`. A search with an `and()` returns all the documents that match the condition of all of the filters. Note that when chaining multiple `WixSearchBuilder` filtering functions to a search, an `and` condition is assumed. In such cases, you do not need to add a call to the `and()` function. `and()` is useful for combining compound filters created using [`WixSearchFilterBuilder`](wix-search.WixSearchFilterBuilder.html) filtering functions. If the `and()` function contains a single filter, the filter is applied directly to the WixSearchBuilder. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Create filters, create a search, add an `and()` filter, and run it ```javascript import wixSearch from 'wix-search'; // ... const geLikeFilter = wixSearch .filter() .ge("likeCount", 20) const geViewFilter = wixSearch .filter() .ge("viewCount", 100) const gtDateFilter = wixSearch .filter() .gt("lastActivityDate", "2020-04-26T00:00:00.000Z") wixSearch.search() .documentType("Forum/Content") .and(geLikeFilter, geViewFilter, gtDateFilter) .find() .then( (results) => { if(results.documents.length > 0) { let documents = results.documents; } else { console.log("No matching results"); } }) .catch( (error) => { console.log(error); }); ``` ## 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); }); ``` ---