Overview
Extended JQ implementation to support global scope data, enabling transformations to access workflow-level variables and execution context alongside input data.
Key Features
- Access Workflow Variables: Reference configuration and settings
- Execution Context: Access metadata like workflow ID, start time
- Shared Data: Share data across workflow steps
- Dynamic Configuration: Inject values at runtime
Example
{
user: .user.name,
workflow: $global.workflowId,
apiKey: $global.vars.apiKey
}
Use Cases
- Dynamic API calls with configuration from variables
- Conditional logic based on environment
- Audit trail with execution metadata
