Hi,
I’m currently trying to duplicate a group with 34 items through the graphQL API. So far so good, the API is easy to use & the request schema helps a lot.
I encounter the following problem:
I successfully duplicate a group with the following mutation query:
mutation {
duplicate_group (board_id: ${boardId}, group_id: ${groupId}, add_to_top: true) {
id
}
}
The group is duplicated in monday & visible. However, not all items of the group are present in the duplicated group. The number varies. Sometimes I get 15/34, other times I get 18/34…
I suspect this might be because my whole custom action exceeds the query complexity limit (it performs more than 1 query). But, I would expect in this case that monday returns a status code 429, this is not the case.
Anybody knows why my item are not all created ?
Thanks in advance!