When sending this query to the API
**query($boardId:[ID!], $groupId:[String], $limit: Int!) {
boards (ids: $boardId) {
groups (ids: $groupId) {
items_page (limit: $limit){
cursor
items {
id
name
column_values {
… on MirrorValue {
display_value
id
}
}
}
}
}
}
}**
I get Complexity Budget Exhausted error both in sandbox and production environments.
I am trying to retrieve mirror items values.
Running this query on the API playground there’s no complexity budget exhausted error.
The limit is 200. I tried limits of 2, 5, 10, 50, 100 and even 1 still get the complexity budget exhausted error.
Has anything changed when it comes to retrieve mirror items values?