Download Workspace name and Boards id and name inside these workspaces

I like to download Workspace name and corresponding board id and name
i need query

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

1 Like