Fields
Sample data
This filter answers yes or no for each item, so there is no before and after. The example keeps only items where the status equalspaid and the total is at least 100.
| Field | Value |
|---|---|
| Condition 1 | status equals paid |
| Condition 2 | total is greater than or equal to 100 |
| Incoming item | Result |
|---|---|
{ "status": "paid", "total": 150 } | matches |
{ "status": "paid", "total": 50 } | does not match |
{ "status": "pending", "total": 150 } | does not match |