Filter Node
Description
Use the Filter node to filter rows from the input node by a condition. Rows are kept if the condition is true. If you provide multiple conditions, rows are kept if all of them are true.
Tips
We don't currently support OR filters. For now, the workaround is to use multiple filter nodes, and combine together with a union node.
SQL Equivalent
select *
from {data_source}
where {column1} = {value}
↩️ Back to Workflow Settings
Updated on: 05/10/2024
Thank you!