Hi all,
I was wondering if there is any plan to increase or even eliminate the complexity check.
I need to get the subitems of a connected board but apparently the query is too complex. Right now I’m doing it with two calls, but ideally I would want to make just one, here it is FYR:
query {
items (ids: [4520136270]) {
id
column_values (ids: ["conectar_tableros4"]) {
value
id
...on BoardRelationValue {
display_value
linked_items {
id
column_values (ids: ["estado","correo_electr_nico","date"]) {
id
value
text
}
subitems {
name
column_values(ids: ["numbers","n_meros","estado1","estado","n_meros8"]){
id
text
value
}
}
}
}
}
}
}
And this is the answer I’m getting:
{
"errors": [
{
"message": "Query has complexity of 14024043, which exceeds max complexity of 5000000",
"extensions": {
"code": "maxComplexityExceeded",
"complexity": 14024043,
"maxComplexity": 5000000
}
}
],
"account_id": XXXXXXXX
}
Any help would be really appreciated.
Thanks,
Carlos