Unable to List Board Updates Via API - Worked Before, Now Getting Internal Server Error

Listing Board updates for multiple boards via GraphQL was working for me up until 10-01-2025. Here is the code I used that always worked until it didn’t

query {
  boards(ids: [7511353721, 7511353762, 7511353913]) {
    updates(limit: 10000) {
      id
      body
      created_at
      creator {
        id
        name
      }
    }
  }
}

Now I get this error: [200] [{“message”:“Internal server error”,“path”:[“boards”,0,“updates”]

Any help, will be much appreciated.

Hey @Bod

Bill here from monday.com.

Could you try sending this again with a limit of 100 or smaller?

There is a limit of 100 for the updates query so reducing the limit should allow this to work again.

You can then paginate through the responses to return more results.

I hope this helps.

Cheers,
Bill

Hi @Billchenau, just reduced to 100 and tried it, same error. Also How do you paginate to get more results?

hey @Bod, you can add the “page” argument and increment that to paginate through the results.

You shouldn’t be getting any errors when using a limit of 100 or lower so if you can send in a support ticket using the form here, our team can investigate this further.

Cheers,
Bill