Refines a query to match items whose specified property contains any of the specified value
parameters.
The hasSome()
function refines a ResourceCatalogQueryBuilder
to only match items where the value of the specified property equals any of the specified values in the array.
Matching strings with hasSome()
is case sensitive, so "text"
is not equal to "Text"
.
You can specify a list of values to match by providing comma-separated String types as the value
parameters. You can also specify a list of these values by including them in an array and providing the array as the value
.
The property whose values will be compared with value
.
Supported properties:
_id
slugs.name
The values to match against.