New `delete_teams_from_board` mutation

In API versions 2024-01 and later, you can use the new delete_teams_from_board mutation to remove teams from a board. You can find more info about this new query in our documentation!

Example

The following example would remove teams 123456, 654321, and 012345 from board 1234567890.

query {
  delete_teams_from_board (board_id: 1234567890, team_ids: [123456, 654321, 012345]) {
    id
  }
}