A user has a Connect Board column with 40+ connected boards. We found that some users, including Admins, could not see the column values because they could not access 1 of the connected boards. It took a long time to track down the offending board. Requests for access went “into the void” with no response from the owner (who could have left the company, for all we knew).
Is there a way to see the names of the boards behind a Connect Boards or Mirror column for Admins, even if they are not invited to the underlying boards? This would help guide an investigation when troubleshooting.
Right now, this is expected behavior: Connect Boards and Mirror columns only show values from boards the viewer can access. So if someone (even an Admin) is missing access to just one connected board, the connected/mirrored values can appear blank or incomplete.
Unfortunately, there’s no built in way for Admins to see a list of the connected board names behind a Connect Boards or Mirror column unless they’re invited to those boards.
If you’d like hands-on help or want us to walk through this live, you can book a 1:1 paid 60-minute strategy session with our team here: Calendly
This is a tricky scenario and, unfortunately, there isn’t a guaranteed admin-level override for this today.
That said, one thing that may be worth trying (and has helped in some cases) is inspecting the Connect Boards column settings via the API. Even if an Admin can’t see the linked items or mirror values, the column’s settings_strmay still list the IDs of the boards it’s connected to. From there, you can attempt to query each board ID individually to identify which one you don’t have access to — that often points to the “offending” board.
To do this, you could try running a query like the following in the monday.com API Playground:
query {
boards(ids: SOURCE_BOARD_ID) {
columns {
id
title
type
settings_str
}
}
}
It’s not a perfect solution and won’t bypass permissions, but it can sometimes provide enough visibility to narrow down where the issue is coming from and help guide the investigation.
This is a common pain point with Connect Boards. Unfortunately, Admins can’t see the names of connected boards if they don’t have access — that’s why one “missing” board can block visibility.
A workaround is to temporarily give yourself access via a co-owner or request the owner to add you, or keep a separate list of connected boards for troubleshooting. It’s not perfect, but it can save a lot of time when tracking issues like this.