jfpelletier
11 months agoContributor
The "Pipeline execute" is changing data types?
Hello all, I'm passing a few values to a child pipeline using "Pipeline execute", and I realized that my lists passed as parameters were converted into strings. I did a quick test and made the "Pip...
- 11 months ago
Pipeline parameters are always strings only in format, if you need to pass structured data into the pipeline, you will either need to use JSON.stringify and JSON.parse (in the pipeline) to handle that in pipeline parameters, or include the structured data in the document being sent to the pipeline rather than as a pipeline parameter.