Hello - I am trying to populate an external form data into monday.com using the GraphQL API. When I try to create an item and populate a checkbox - it seems to set the checkbox to true even if the value provided is true or false.
When I do this:
mutation { create_item (board_id: 1409811733, item_name: “test_item_name”,column_values: “{"check": {"checked":"false"}}”) { id }}
OR
mutation { create_item (board_id: 1409811733, item_name: “test_item_name”,column_values: “{"check": {"checked":"true"}}”) { id }}
It sets the checkbox to true. “False” does not matter. Is this a bug?