Improved
New fields on the `Board` type
April 2nd, 2026
🏷️ API version:
2026-04
The Board type now includes two new fields:
| Field | Type | Description |
|---|---|---|
created_from_board_id | ID | The source board this board was created from (e.g., when duplicated from a template) |
folder | Folder | The 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
}
}
}