Troubleshooting
How to troubleshoot common issues when accessing data in steps.
Common Error Scenarios
Learn how to identify and fix common issues that occur when accessing data between workflow steps.
File Content Access
Solution: Enable Extract Contents
and Extract Images
in the file field settings, then delete the existing uploaded file(s) and re-upload them for the extraction process to take place.
Model Step JSON Parsing
Operations in Placeholders
Operations can only be performed in Code step placeholders where we have direct access to objects like input.*
and MODEL_STEP.*
. For other step types that use double curly brace placeholders ({{...}}
), operations are not supported and you’ll need to use a Code step instead.
Don’t do this:
Solution: Create a Code step to perform operations and return the processed data:
Then reference the processed data:
This approach also keeps data processing logic in Code steps where it belongs and makes the workflow more maintainable.
Debugging Techniques
Debugging techniques to identify and fix issues in your workflow steps.
Using console.log()
In Code steps, you can use console.log()
to inspect values:
Return Values
You can also return values to see them in the step output:
The returned value will be displayed in the step output panel when you run the workflow.
Was this page helpful?