Following the Qickstart tutorial I learned to create the following query
“query2 = ‘query($myBoardID: Int!) {boards (ids: d$myBoardID]) { name id description items { name column_values{title id type text } } } }’”
But it doesn’t list the groups in the board, dividing the information per group
How can I achieve that?
Page 1 / 1
Try this:
query {
boards (limit:1) {
groups {
id
title
items {
id
name
}
}
}
}
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.