Hey, This is probably in regards to Visma moving away from VBS - a change we were suppose to not notice at all. Your mutation is updating with empty values. If you want to maybe update some fields, you should have the whole entity as a parameter instead. At least that's your workaround until Visma (maybe) fixes this. mutation UpdateCompany($companyID: Int!, $customerNo: Int!, $entity: Associate_Input!) {
useCompany(no: $companyID) {
associate_update(filter: {customerNo: {_eq: $customerNo}}, value: $entity) {
affectedRows
}
}
} {
"companyID" : 4000000,
"customerNo": 11000,
"entity": {
"phone": "94000000"
}
} The drawback here is that if you are using dotnet you need to make sure that your serializer is set to not include NULL-values, or you'll be in for a surprise with suggested values.
... View more