I am new to Monday API. I am using the following query to pull the data of boards and the items in that board:
{boards(ids:“Id of the board here”) { name id description board_kind permissions updated_at items { name column_values{title id type text value additional_info } } } }
Now, I also want to know the group of the item. But I am not able to create a query which returns the group name of the item. Can anyone please guide me here?
Hello @mayankhb,
Welcome to the community
Try this:
{
boards(ids: 1234) {
name
id
description
board_kind
permissions
updated_at
items {
name
column_values {
title
id
type
text
value
additional_info
}
group {
id
title
}
}
}
}
Remember to apply limit to your items to avoid running into issues because the complexity of your query can grow exponentially.