Skip to main content
Keeps an item only when the value at a chosen field passes every condition you list. Use this for everyday checks like “keep orders where the total is at least 100” or “keep customers whose email is not empty”. You point at a field with an accessor, then list the conditions that value has to meet. If the field holds several values, every one of them has to pass, and an item with no value at that field is never kept.

Fields

Sample data

This filter answers yes or no for each item, so there is no before and after. The example reads the status field and keeps only items where it equals paid.
FieldValue
AccessorKey accessor reading status
ConditionsEquals paid
Incoming itemResult
{ "status": "paid" }matches
{ "status": "pending" }does not match