Is there a way to erase the entire local storage at once? Or do I have to use flow functions to go through all the lists and items individually?
You can do a loop.
Get record collection > set data variable > IF flow with condition: COUNT(data.collection)<1
- true: all deleted
- false: Delete record (set id to data.collection[0].id)
This will erase all documents in a data resource. I mean it should.
2 Likes