Hello, everyone.
I am using Monday.com API graphql query and I get some errors while I am using move item to board query
Here is my query
mutation {
moveItem: move_item_to_board (
board_id: 1886238032,
group_id: "topics",
item_id: 1887657797,
columns_mapping: [
{ source: "text", target: "text" },
{source:"text5", target:"text_1"},
{source:"status7", target:"status7"},
{source:"status_1", target:"status_1"},
{source:"phone", target:"phone"},
{source:"email", target:"email"},
]
) {
id
}
}
But I got this error
{
"error_message": "Columns mapping is not in the expected format",
"error_code": "GraphqlGeneralError",
"error_data": {},
"status_code": 200,
"account_id": 20770082
}
Why do I get this error? Did I set up the column mapping incorrectly?
I would appreciate it if someone could help me with my problem?
Thank you,

