Hello, I want to retrieve deleted tickets but I have 10 thousand of these, the documentation states I have very limited calls to these.
1) I am correct thinking the documentation is misleading and cursor pagination has no limitations?
2) I was also told cursors are only open for 1 hour, am I correct thinking this is also misleading and they remain open for up to 1 hour after the _last_ access to it?
3) Do cursors take advantage of Parameters sort_by and sort_order?
4) Is the data under a cursor frozen after the initial request? If I delete an extra ticket, or if 30 days pass for one of the deleted tickets while Im traversing the cursor, would that modify the pages returned? (I believe that would modify the returns on a regular paginated query, t the point you could find the same value on two pages -as the bottom value would get pushed into the next page, or skip a value -as it would get pulled into the previous page after you queried it).