Improved

New fields on the `Board` type

🏷️ API version: 2026-04

The Board type now includes two new fields:

FieldTypeDescription
created_from_board_idIDThe source board this board was created from (e.g., when duplicated from a template)
folderFolderThe folder containing this board (null if the board is not in a folder)
query {
  boards(ids: [1234567890]) {
    id
    name
    created_from_board_id
    folder {
      id
      name
    }
  }
}