Skip to main content
Reverses a condition. It keeps an item only when the condition you choose does not match, and filters out the items that do match. Use this to express the opposite of a check, for example “keep every order that is not cancelled” by wrapping a “status equals cancelled” condition in this one.

Fields

Sample data

This filter answers yes or no for each item, so there is no before and after. The example wraps a “status equals paid” condition, so it keeps everything that is not paid.
FieldValue
Conditionstatus equals paid
Incoming itemResult
{ "status": "paid" }does not match
{ "status": "pending" }matches