added

New `team_owners` and `team_subscribers` fields on `boards` queries

We added the team_owners and team_subscribers fields to boards queries in API versions 2024-10 and later. These fields return the teams that are either subscribed to or owners of the board.

query {
  boards (ids: 1234567890){
    team_owners
    team_subscribers
  }
}