> 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: hasSome(propertyName: string, values: Array) # Method package: wixPricingPlansBackend # Method menu location: wixPricingPlansBackend --> PublicPlansQueryBuilder --> hasSome # Method Link: https://dev.wix.com/docs/velo/apis/wix-pricing-plans-backend/public-plans-query-builder/has-some.md # Method Description: Refines a query to match items whose specified property contains any of the specified `value` parameters. The `hasSome()` function refines a `PublicPlansQueryBuilder` to only match items where any of the values of the array of the specified property equal any of the specified values. Matching strings with `hasSome()` 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. ## Add a "has some" filter to a query ```javascript const query = wixPricingPlansBackend.queryPublicPlans() .hasSome("_id", [ "001c0674-d7c9-4c77-acb5-b492b427b201", "003d0674-d7c9-4d88-acb5-b492b427b302", "011d0123-d7c9-5e44-acb5-d300a123b321" ] ); ``` ## Create a query, add a "has some" filter, and run it ```javascript import wixPricingPlansBackend from 'wix-pricing-plans-backend'; // ... wixPricingPlansBackend.queryPublicPlans() .hasSome("_id", [ "001c0674-d7c9-4c77-acb5-b492b427b201", "003d0674-d7c9-4d88-acb5-b492b427b302", "011d0123-d7c9-5e44-acb5-d300a123b321" ]) .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; }); ``` ---