hasAll( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Refines a search to match items whose specified field value equals all of the specified values.

The hasAll() method refines the search to only match items where the value of the specified field equals all of the specified values.

Matching strings with hasAll() is case-sensitive, so "text" is not equal to "Text".

If the value of the specified field is an array, hasAll() matches if there is a match in the elements of that array for all of the specified values.

You can specify a list of values to match by providing an array of String, Number, or Date types as the values parameters.

Method Declaration
Copy
Method Parameters
fieldstringRequired

Field whose value is compared with values.


valuesArray<string>Required

Values to match. All specified values must be present.

Returns
Return Type:WixDataSearch
Errors

This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?