Skip to main content

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

  • January 19, 2025
  • 3 replies
  • 20 views

  • New Participant

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.

3 replies

Forum|alt.badge.img
  • monday.com Team Member
  • January 20, 2025

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


  • Author
  • New Participant
  • January 20, 2025

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


Forum|alt.badge.img
  • monday.com Team Member
  • January 22, 2025

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