Forum Discussion
2 Replies
- j_angelevskiContributor III
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
- RahulNew Contributor III
Thanks It’s working expected