> 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: in(field: string, values: Array) # Method package: wixSearch # Method menu location: wixSearch --> WixSearchFilterBuilder --> in # Method Link: https://dev.wix.com/docs/velo/apis/wix-search/wix-search-filter-builder/in.md # Method Description: Creates a search filter for matching documents whose specified field value equals any of the specified values. The `in()` 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 equals any of the specified values. Matching strings with `in()` is case sensitive, so `"text"` is not equal to `"Text"`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Create an `in()` search filter ```javascript import wixSearch from 'wix-search'; // ... const inFilter = wixSearch .filter() .in("sku", ["B04", "B07", "B08"]); ``` ## Create filters and add them to a search ```javascript import wixSearch from 'wix-search'; // ... const filterBuilder = wixSearch.filter(); const inFilter = filterBuilder.in("owner", ["04b11aa6-d0a0-4c7a-a444-f4a5e452840c", "21cf071a-cc2f-444f-ad74-5a25db0b1b6a"]); const hasSomeFilter = filterBuilder.hasSome("hashTags", ["summer", "fun", "vacation"]); const neFilter = filterBuilder.ne(categoryId, "5df7504fa8a9b30017fc1053"); wixSearch.search(phrase) .documentType("Forum/Content") .and(inFilter, hasSomeFilter, neAllFilter) .find() .then( (results) => { if(results.documents.length > 0) { let documents = results.documents; } else { console.log("No matching results"); } }) .catch( (error) => { console.log(error); }); ``` ---