Inputs
☐ Description (Optional)
A brief note explaining what data you’re inserting.Good Examples:
- “Add customer details to table”
- “Set default configuration values”
- “Initialize counter variables”
☐ Data Type (Required)
Choose where to insert your data:Table Columns
Description:
Add data to specific columns in a table.Features: ☐ Insert multiple values at once ☐ Data added as new rows ☐ Supports all data typesExample Use Case:
Adding customer name and email to a contacts table
Variables
Description:
Create and assign values to variables.Features: ☐ Create new variables ☐ Assign dynamic values ☐ Reference in later stepsExample Use Case:
Setting a counter variable to track iterations
Usage Examples
1. Customer Data
Add new customer details to contacts table
2. Configuration
TypeVariables
Names
maxRetries, delay
Values3, 1000
Set configuration variables for workflow
3. Product Details
TypeTable
Columns
id, name, price
Values101, Widget, 29.99
Add new product to inventory table
4. Counter Setup
TypeVariables
Names
counter, total
Values0, 100
Initialize counter variables for tracking
Notes
- Use descriptive variable names for better readability
- Ensure table column names match exactly
- Only add the data you need to avoid workflow bloat
- Consider using variables for values you’ll modify later