Hi,
I’m updating monday using graphql and some of my updates are not saved incosistently and I don’t know why.
Here’s a log af an update that I’ve made, we can see in the column_values the result from monday saying ot was saved with the value “45”
but the data in monday did not reflect this change.
See Monday change log:
When I ran the same code again today - the change was saved. and I got the same result from monday.
Here’s my graphql:
`#graphql
mutation ($id: Int!,$value:JSON!,$board:Int!,$column_id:String!) {
change_column_value(
item_id:$id
column_id:$column_id,
board_id:$board,
value:$value
) {
id
name,
column_values(ids:[$column_id]){
id
title
value
}
}
}
95% of these updates are saved, but I’m hoping to get to 100%. Can you investigate?

