List boards in make.com not working

List boards module in make.com returns a very odd error:

RuntimeError
[200] [{“message”:“Cannot return null for non-nullable field Board.owner”}]

When I use a GraphQL Query it does work.

Anyone know why?

1 Like

Same here … very annoying :frowning: Please help community

Hi,

It’s more likely it a make.com issue since when you use the GraphQL Module it does work.

Maybe try reaching out to make.com support or on the make.com community

Hope this helps

Hello everyone!

What block are you using in Make.com and what data are you passing?

You don’t need to share the actual data. It can be mock data using the same format :grin:

Looking forward to hearing from you!

Cheers,
Matias

Hi Matias,

It is the List boards module, settings were limit 10. Input was workspace ID. Does this help?

Having the same issue since Wednesday, has anyone found a fix for this yet?

Hi all,

This is an issue from Monday, support techs confirmed it. As far as I know they are working on it.

Until then, you can do a workaround using a GraphQL Query (get), something like this should work:

query {
boards(workspace_ids: WORSPACE_ID, order_by: created_at) {
id
name
state
type
}
}

Hope this is fixed soon by the Monday team soon.

1 Like

Hello everyone,

monday’s R&D team is working on this as we speak :grin:

We will keep you posted!

1 Like

Hello again,

This should be working well for everyone now :grin:

Cheers,
Matias

2 Likes