We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0081064 commit 78303e3Copy full SHA for 78303e3
1 file changed
.claude/plugins/burr/skills/burr/api-reference.md
@@ -317,7 +317,10 @@ from burr.core import when
317
- `key__gt=value` - Greater than
318
- `key__gte=value` - Greater than or equal
319
- `key__in=[values]` - In list
320
-- `key__contains=value` - List contains value
+- `key__notin=[values]` - Not in list
321
+- `key__contains=value` - Collection/string contains value
322
+- `key__is=value` - Identity check (`is`), useful for `None`
323
+- `key__isnot=value` - Negated identity (`is not`)
324
325
**Using `expr()`** - Arbitrary Python expressions:
326
```python
0 commit comments