# without modifier

The without modifier negates the normal
rules for selection criteria. if no, with
no, and with not are identical to without.

## Syntax

```
without attr.name
```

## Example(s)

This is essentially the same
as `with no phone`.

```
list entity without phone
```
It could also be stated as:

```
list entity with phone = ""
```

## See also

- [ifno modifier](https://d3codex.com/access/ifno-modifier/)
- [Modifiers](https://d3codex.com/access/modifiers/)
- [not operator](https://d3codex.com/access/not-operator/)
- [Selection criteria](https://d3codex.com/access/selection-criteria/)
- [with modifier](https://d3codex.com/access/with-modifier/)

---
Source: https://d3codex.com/access/without-modifier/ - part of the D3Codex reference.
