The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Filter Data Example",
"nodes": [
{
"parameters": {},
"id": "start",
"name": "Start",
"type": "n8n-nodes-base.start",
"typeVersion": 1,
"position": [
50,
300
]
},
{
"name": "Set Data",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
250,
300
],
"parameters": {
"assignments": [
{
"name": "name",
"value": "Alice"
},
{
"name": "active",
"value": true
},
{
"name": "score",
"value": 85
}
]
}
},
{
"name": "Filter Items",
"type": "n8n-nodes-base.filter",
"typeVersion": 1,
"position": [
450,
300
],
"parameters": {
"conditions": [
{
"leftValue": "active",
"operator": "equals",
"rightValue": true
}
]
}
}
],
"connections": {
"Start": {
"main": [
[
{
"node": "Set Data",
"type": "main",
"index": 0
}
]
]
},
"Set Data": {
"main": [
[
{
"node": "Filter Items",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Filter Data Example. Uses start. Manual trigger; 3 nodes.
Source: https://github.com/neul-labs/m9m/blob/main/examples/agent/filter-data.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
DocuFlow Universal Extraction. Uses start, httpRequest. Manual trigger; 7 nodes.
Manage contacts via Autopilot. Uses autopilot. Manual trigger; 4 nodes.
Manage transfers automatically in Wise. Uses wise. Manual trigger; 4 nodes.
Google Sheets Data Processing Template. Uses googleSheets, noOp. Manual trigger; 7 nodes.