# LogicalNot Criterion

The [`LogicalNot` URL Criterion](https://doc.ibexa.co/en/latest/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-URL-Query-Criterion-LogicalNot.html) matches a URL if the provided Criterion doesn't match.

It takes only one Criterion in the array parameter.

## Arguments

- `criterion` - represents the Criterion that should be negated

## Example

```
$query->filter = new Criterion\LogicalNot(
        new Criterion\Pattern('ibexa.co')
);
```
