Context
I am trying to retrieve all teams subscribed to a specific board using the monday API. However, when using the team_subscribers query, I receive a 500 error when the board has “All from workspace” as one of the subscribers.
Query Used
query {
boards(limit: 10) {
id
name
team_subscribers {
id
name
}
}
}
Expected Result
The query should return a list of teams subscribed to each board.
Actual Result
When the board includes “All from workspace” as a subscriber, the API returns a 500 error.
Error Details
-
Error Type: 500 Internal Server Error
-
Specific Scenario: The error occurs only when “All from workspace” is included among the board’s subscribers.
Steps to Reproduce
-
Create a board on monday.com.
-
Add “All from workspace” as a subscriber to the board.
-
Run the query
query { boards { id name team_subscribers { id name } }}
-
Observe that the API returns a 500 error.
Impact
- It is not possible to retrieve the list of teams subscribed to boards that have “All from workspace” as a subscriber, which limits the functionality of managing subscribers via the API.
Suggestion
I would like to request:
-
Any temporary workaround that can be used to avoid this error.
-
A fix to allow retrieving team subscribers even when “All from workspace” is included.
-
Clear documentation on how the inclusion of “All from workspace” affects subscriber queries.
Additional Information
-
API Version: 2024-07
-
Environment: development