Hi,
In older Monday accounts the “Main Workspace” has id null
(like specified in docs) while in newer accounts the id is a true number(which contradicts the docs). As a result, the API is now inconsistent.
For instance, the query below returns:
- the boards of the main workspace in older account
- nothing in newer accounts.
This makes it hard to develop reliable programs for developers.
What is the future planned behavior for this? Please also suggest a way developpers can reliably point to the Main Workspace.
Thanks
{
boards(workspace_ids: null) {
...boardFragment
}
}
fragment boardFragment on Board {
id
name
description
type
state
board_kind
board_folder_id
items_count
permissions
updated_at
workspace {
...workspaceFragment
}
top_group {
id
}
}
fragment workspaceFragment on Workspace {
id
name
}