I like to download Workspace name and corresponding board id and name
i need query
Page 1 / 1
Hello there @Channa,
You can use a query like this one to get data from your workspaces:
{
workspaces (limit: 10000) {
name
id
kind
}
}
Or maybe a query like this one to get your boards and to which workspace they belong:
{
boards(limit: 1000, page: 1) {
workspace {
id
name
}
}
}
Cheers,
Matias
Reply
Login to monday.com
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.