Added
New argument to create empty boards
 April 4th, 2025 
  🏷️ API version:
  
     2025-07
  
You can now create empty boards using the new empty argument on the create_board mutation. When used, this creates a new board without any items in the default group.
mutation {
  create_board (empty:true, workspace_id:123456, board_kind:public, board_name:"New board") {
    id
  }
}