# every modifier

The every modifier forces comparison
on every value, rather than any value.

**Synonyms:** each

## Syntax

```
with {not} every attr.name{operator} {"value"}
```

## Example(s)

```
list invoices with every quantity.ordered > "200"
```

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