not( )


Developer Preview

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

Adds a not condition to the filter.

The not() method adds a not condition to this filter. A filter with a not returns all the items that match the filter as defined up to the not method, but don't match the filter passed to the not method.

If the filter only contains a not() method, it returns all the items that don't match the filter defined by the not method.

Method Declaration
Copy
Method Parameters
filterWixDataFilterRequired

Filter to add to the initial filter as a not condition.

Returns
Return Type:WixDataFilter
Did this help?