Hello
i've a graphql query linked to a table with server side pagination. Everything works well, and when i click the "next page" button, new data are loaded and displayed.
Now i'd like to implement a script that move to the next page programmatically after a delay of 10 seconds. The problem is that the page counter change correctly, but table load same data. It seems that the graphql cursor remain in the same position.
This is the code i use to change page
if(tbl_import.hasNextAfterCursor == "" || tbl_import.hasNextAfterCursor === true){
tbl_import.selectPage(tbl_import.selectedPageIndex + 1);
}