Ow can we pass array in pipeline parameter
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2022 04:23 AM
Hi, I am trying to use an array in the pipeline parameter and need to pass the child mapper and array is converted into String.
[
“SENDING_PLAN”,
“TRACKING_PLAN”
]
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2022 08:26 AM
Hey @Rahul,
The eval() function can help you in this case. Try the following:
param = '["SENDING_PLAN","TRACKING_PLAN"]' - String
expression in mapper -> eval(_param)
Reply
