Hello
Can i use data mapper task to map data with conditions ?
Is using java script task for mapping impact the performance or has any cons ?
Solved! Go to Solution.
Hi @melfeqy03 ,
The data mapper task doesn't support it but it could be done via:
Data transformer Task
eg:
{result: if n === 0 then 1 else 2}
OR
JavaScript Task
There can be latency implications when dealing with huge dataset in JavaScript Task
Hi @melfeqy03 ,
The data mapper task doesn't support it but it could be done via:
Data transformer Task
eg:
{result: if n === 0 then 1 else 2}
OR
JavaScript Task
There can be latency implications when dealing with huge dataset in JavaScript Task