This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Hi, Maybe this is a very novice doubt, but I am new in Conductor and I have the following need. I have a task which returns an output as follows: {
"person1": {
"name": "NAME",
"lastname": ["lastname1", "lastname2"]
},
"person2": {
"name": "NAME2"
}
} How could I get the inputParameters in another task to be like this: {
"names": ["NAME", "lastname1", "lastname2", "NAME2"]
} It may also be that person2.name2 does not exist, so that concatenation would be optional. I have tried SpEL actions like the following: |
Beta Was this translation helpful? Give feedback.
Answered by
c4lm
May 16, 2023
Replies: 1 comment 2 replies
-
Try this:
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Then you'd need to have an INLINE task to transform, since your case is not supported by ParameterUtils