> For the complete documentation index, see [llms.txt](https://daseldocs.tomwright.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://daseldocs.tomwright.me/v2/functions/not.md).

# Not

Expects 1 argument.

Expects the argument to be a selector that will be performed against the current value.

Returns false if the selector returns a truthy value.

Returns true if the selector returns a falsey value.

## Examples

### NotMoreThan

```
$ echo '[1,2,3,4,5]' | dasel -r json 'all().not(moreThan(.,3))'
true
true
true
false
false
```
