Autom8 AI Docs
  • Introduction to A8I
  • Quick Start
    • Your First Workflow
  • Workflows Explained
    • Create and Run a Workflow
    • Workflow Components
    • Executions
    • Manual, Partial, and Production Executions
    • Workflow Executions
    • All Executions
    • Custom Execution Data
    • Debug and Re-run Past Executions
    • Tags
    • Export and Import Workflows
    • Workflow Templates
    • Workflow Sharing
    • Workflow Settings
  • Flow Logic
  • Data
    • Data Structure
    • Data Flow Within Nodes
    • Transforming Data
    • Processing Data with Code
    • Data Mapping
  • AI Assistant
  • Glossary
  • Integrations
  • Build an AI Chat Agent in Autom8 AI
Powered by GitBook
On this page
  1. Data

Data Flow Within Nodes

In Autom8 AI, nodes can process multiple items at once. Each item flows through the workflow independently, allowing powerful automation at scale.


How It Works

Each incoming item is passed through the node one at a time, and the node performs its operation per item.

For example, let’s say you have a Create Card step that uses a field called name-input-value. If the incoming data looks like this:

jsonCopyEdit[
  { "name-input-value": "test1" },
  { "name-input-value": "test2" }
]

The node will:

  • Process each object in the array separately

  • Use name-input-value to set the name of the new card

  • Create two cards—one named "test1", the other "test2"


Why This Matters

This pattern enables:

  • Batch processing without extra configuration

  • Dynamic behavior based on each item’s data

  • Clean and predictable data transformations

Whether you're sending emails, creating records, or formatting content—each item gets treated individually.

PreviousData StructureNextTransforming Data

Last updated 5 days ago