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.

Last updated