I am using make.com to create subitems in a monday board.
The query itself is fine and working.
In this specific scenario, I am listing items in a group (around 200 items) and creating a subitem for each item.
Each time, the 33rd operation fails, due to API cmplexity issues. It’s quite strange as I have done similar things in the past with no problem at all.
Here’s the error:
200] 0“Complexity budget exhausted, query cost 30001 budget remaining 9967 out of 1000000 reset in 0 seconds”] n Error Code: complexityBudgetExhausted ]
Here’s the api call:
mutation {
create_subitem(
parent_item_id: {{7.id}}
item_name: “test”
column_values: “{"text": "0db9d56361", "email": {"email":"{{7.mappable_column_values.email.email}}","text":"{{7.mappable_column_values.email.text}}"}}”
) {
id
}
}
Does anyone no what might be the issue?
Thank you in advance!