I am trying to add a simple item to a board:
var helper = new MondayHelper();
string json = await helper.QueryMondayApiV2(“{"query": "{boards(limit:100){id name}}"}”);
string query = @"{""query"": ""mutation {create_item(board_id: 628989982, item_name: \\""adding works\\"", column_values: ""{\\""Status\\"": \\""Done\\""}"") }"" }";
await helper.QueryMondayApiV2(query);
However I get a bad request. Sample works without column_values. All poiters are welcome.

