Hello, I am new to the monday.com API and I have a few questions about how to query and filter by groupId.
I have been digging all over the sample code and playing with the samples and I can’t find a query that shows what group each item is assigned to
query {
boards(ids: :123456789]) {
items_page {
items {
id
name
}
}
}
}
The goal is to design a workflow to pull a list of all the ItemId’s within a groupId using Node.js on an application hosted on Monday code.
I would like to take this list an iterate through them and perform an action. But can not find in the documentation how to filter the list down to just those in a specific group.
Thanks!