Not sure what can be done about it but as a developer I find extremely annoying when I get back a JSON response from your GraphQL API that includes a mix and match from both Lower Camel case strategy and Snake Case Strategy. Is there is any reason why you are not using a common property naming strategy? You can clearly see that attributes under the event path are with Lower Case while under the value attribute they are with Snake Case
{
"event": {
"app": "monday",
"boardId": 11111,
"changedAt": 1656743557.4904916,
"columnId": "dev_status5",
"columnTitle": "Dev Status",
"columnType": "color",
"groupId": "topics",
"isTopGroup": true,
"originalTriggerUuid": null,
"parentItemBoardId": "111",
"parentItemId": "111",
"previousValue": null,
"pulseId": 111,
"pulseName": "Item created",
"subscriptionId": "1111",
"triggerTime": "2022-07-02T06:32:37.786Z",
"triggerUuid": "fsdfdsfs",
"type": "update_column_value",
"userId": 11111,
"value": {
"label": {
"index": 154,
"is_done": false,
"style": {
"border": "#A9BEE8",
"color": "#A9BEE8",
"var_name": "cold_blue"
},
"text": "Something"
},
"post_id": null
}
}
}