Pagination Duplicate Board API

I have a board that contains upwards of 8000 rows and about 100 columns. I need to duplicate it via using the API. I have an in depth python script using the request module, but for this question, we can just use the API playground.

From my understanding, I am timing out. The API playground will display the error message after 60 seconds has passed. I’ve seen some other posts about using pagination to mitigate timeout errors, but how can that be done with a board duplication mutation?

In my python code, I have increased the timeout parameter to 120 seconds, but I still run into the same problem. Does the API have a set limit of 60 seconds?

mutation {
  duplicate_board (
    board_id: 123456,
    board_name: "123456_duplicate",
    duplicate_type: duplicate_board_with_pulses_and_updates,
    keep_subscribers: true) {
    	board {
        id
      }
  }
}

>>>
{
  "errors": [
    {
      "message": "Failed to fetch",
      "stack": "TypeError: Failed to fetch
       ...

Hello there @Binx96,

Would you be able to please fill this form (https://support.monday.com/hc/en-us/requests/new?ticket_form_id=13855862562962) adding as much information as possible to it (such as account ID, board IDs, item IDs, timestamps, etc.) so that our team can take a look into it?

Looking forward to hearing from you :smile:

Cheers,
Matias