Skip to main content
Load data from your app’s database into a workflow table for processing:
{
  importFromDatabase: {
    appId: "{{var.appId}}",
    tableName: "Connection",
    whereColumn: "status",
    whereValue: "active",
  },
  outputTable: "active_connections",
  outputSchema: {
    id: "VARCHAR",
    userId: "VARCHAR",
    service: "VARCHAR",
  },
}
FieldRequiredDescription
appIdYesApp identifier (typically "{{var.appId}}")
tableNameYesSource table name
outputTableYesName of the table this step produces
outputSchemaYesColumn names and types for the result output table
whereColumnNoColumn to filter by
whereValueNoValue to match — required if whereColumn is set
Import steps support fieldMapping to rename columns and generate values like IDs and timestamps.

Validation

Check
appId, tableName, outputTable, outputSchema are required
whereColumn and whereValue must both be set if either is provided
tableName exists in the app database
whereColumn exists in source table
outputSchema columns exist in source table (skipped when fieldMapping is provided)