Skip to content
FlowHubFluxonLab
Customer Datastore (n8n training)
N8n Training Customer Datastorefree

Filtering and branching data

by Jonathanadapted from n8n official workflow galleryUpdated Aug 2026
RequiresCustomer Datastore (n8n training)Customer Datastore (n8n training)
Share Post Share
MaOn clicking 'execute'On clicking 'ex…NTCustomer DatastoreCustomer Datast…IfCountry equals USCountry equals …IfCountry is empty or Name contains 'Max'Country is empt…SwCountry based branchingCountry based b…1234
1/5
STEPS · 4
Run manually by an operator

Task: Conditional filtering and branching items Why: Filtering and branching data based on conditions allows you to build complex workflows that work with more than one data flow scenario Main use cases: Filter out data that is not relevant for the rest of the workflow Split data to several branches of the workflow, where we want the data to be treated differently in the rest of the workflow

Tags

n8nreference-onlyn8n-training-customer-datastore
Connects
customerdatastoren8ntrainingCustomer Datastore (n8n training)
CategoryN8n Training Customer Datastore
Triggermanual
Complexitymedium
Nodes5
AddedJul 6, 2022
customerdatastoren8ntrainingW
free

Avoid rate limiting by batching HTTP requests

This workflow demonstrates the use of the Split In Batches node and the Wait node to avoid API rate limits. Customer Datastore node: The workflow fetches data from the Customer Datastore node. Based on your use case, replace it with a relevant node. Split In Batches node: This node splits the items into a single item. Based on the API limit, you can configure the Batch Size. HTTP Request node: This node makes API calls to a placeholder URL. If the Split In Batches node returns 5 items, the HTTP Request node will make 5 different API calls. Wait node: This node will pause the workflow for the time you specify. On resume, the Split In Batches node gets executed node, and the next batch is processed. Replace Me (NoOp node): This node is optional. If you want to continue your workflow and process the items, replace this node with the corresponding node(s).

by Harshil Agrawal
customerdatastoren8ntraining
free

Very quick quickstart

Want to learn the basics of n8n? Our comprehensive quick quickstart tutorial is here to guide you through the basics of n8n, step by step. Designed with beginners in mind, this tutorial provides a hands-on approach to learning n8n's basic functionalities.

by Deborah
Ccustomerdatastoren8ntraining
free

Merge multiple runs into one

This is a workflow that might come handy after using loops. They usually leave you with items spread across different "runs". The Code node in this example workflow merges them into a single run, so you have a single list of items which is often easier to work with. Simply adjust the node name inside the Code node as needed. The idea is based on this older workflow template.

by Tom