Fields
Sample data
This filter answers yes or no for each item, so there is no before and after. The example runs a transformer that produces{ "allowed": "paid" }, then compares each item’s status against that allowed value with “equals”, so only paid items are kept.
| Field | Value |
|---|---|
| Data transformer | Sets allowed to paid |
| Comparator | equals |
| Entity Path | status |
| Search Pattern | allowed |
| Use entity data in transformer | off |
| Incoming item | Result |
|---|---|
{ "status": "paid" } | matches |
{ "status": "pending" } | does not match |