I need to pull data from a group in my board. The condition is that I have to filter items in this group by a specific item column value. I could figure out how to get all items belonging to a group on a board using this query:
{boards (ids:BOARD_ID_HERE) {
groups (ids: GROUP_ID_HERE) {items (limit:2) {
name created_at column_values{id title text}
}}}}
What would be the query for filtering the group items based on a column value?