Hi,
Is there an API from where I can get a list of all deleted items ?
Or
get all items present in a deleted/archived board ?
Currently I am using this query to get all items from Deleted/Archived boards { boards(state:${state}) {items_page(limit:${batchSize.api}) {cursor items{id}}}}.
This will return me multiple cursors for items in each board and then it is a task to maintain all those cursors and get all items from these board.
Is there a simpler workaround available ?
Please help