11-17-2021 05:18 AM
I have to pass the last 30 dates pipeline for execution. so how i can get the last 30 dates
11-17-2021 05:23 AM
Hi @Rahul,
You can do this with a Mapper with the following expression:
sl.range(0, 31).map(val => {"date": Date.now().minusDays(val)})
This will create an array of the last 30 days. After this, you can use a JSON Splitter to split the array and get each date as an object.
Result
11-17-2021 05:34 AM
Thanks It’s working expected