Variables

Set and reuse values across your flow, like counters, strings, objects, or flags. Great for storing intermediate data or config settings.

Use Case: Store and Reuse Values Across the Flow

Use the Variables component to define and manage reusable values, such as counters, file paths, booleans, or JSON objects, that persist across different steps in your flow. Ideal for maintaining configuration data, controlling logic, or tracking state dynamically during execution.

Str filePath = "https://storage.fastn.ai/file.csv"  
Int retryCount = 2  
Boolean isSynced = False  

How does it help?

  • Maintain consistent values across multiple flow actions

  • Simplify logic handling with flags and counters

  • Dynamically store and update configuration or temporary data

Last updated

Was this helpful?