Skip to main content
Combines several conditions into one and keeps an item when at least one of them matches. Use this when an item should pass if it meets any of a set of tests, for example “the status is paid or the status is shipped”. An item is only filtered out when none of the conditions match. You usually combine this with the And and Not logic options to build up the exact rule you need.

Fields

Sample data

This filter answers yes or no for each item, so there is no before and after. The example keeps items where the status equals paid or equals shipped.
FieldValue
Condition 1status equals paid
Condition 2status equals shipped
Incoming itemResult
{ "status": "paid" }matches
{ "status": "shipped" }matches
{ "status": "pending" }does not match