Fields
Sample data
This filter answers yes or no for each item, so there is no before and after. It relies on a configured storage, which cannot be exercised from a standalone example, so the illustration below is based on the feature’s behaviour rather than a recorded run. With the default condition (keep items that do not already exist) and a storage that already contains an entry for order10041:
| Field | Value |
|---|---|
| Storage entity identifier | &{order_id} |
| Condition | keep items that do not exist in storage (the default) |
| Save entity to storage | on |
| Incoming item | Result |
|---|---|
{ "order_id": "10041", "customer": "Jane Doe" } | does not match (already in storage, so it is dropped) |
{ "order_id": "10042", "customer": "John Smith" } | matches (new, so it passes and is saved for next time) |