IN and NOT IN Filters¶
Use the following examples to apply IN and NOT IN filtering:
-- Check completeness for specific product categories
missing_count(description) = 0
-- Filter:
category IN ('Electronics', 'Books', 'Clothing')
-- Exclude test data from validation
duplicate_count(user_id) = 0
-- Filter:
environment NOT IN ('test', 'staging')