An issue with a strange value in column which type is date occurred when adding an item using the mutation query.
Using Tool : Postman
Using Query
mutation {
create_item (board_id: ${board_id}, group_id: ${group_id}, item_name: ${item_name}, column_values: "{"date4":{"date":"2023-03-03"}}") {
id
}
}
expected : Item which has 2023-03-03 date value
result : Item which has 2022/08/07 date value
I tried 10 times. I confirmed that issue occured once out of 10 times.
Please answer me why this issue has occured and how can i fix this issue.