Forum Discussion

Rahul's avatar
Rahul
New Contributor III
4 years ago

How to get last 30 dates

I have to pass the last 30 dates pipeline for execution. so how i can get the last 30 dates

2 Replies

  • 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

  • Rahul's avatar
    Rahul
    New Contributor III

    Thanks It’s working expected