Move Item Mutation Error

Hello there @anon29275264 ,

You should see no errors with those columns.

Something like this (if the connect boards column and the mirror column are configured in the same way in both boards) works well:

mutation {
  move_item_to_board(
    board_id: 11111111
    group_id: "topics"
    item_id: 1122334455
    columns_mapping: [{source: "person", target: "person"}, 
      {source: "status", target: "status"}, 
      {source: "date4", target: "date4"}, 
      {source: "auto_number__1", target: "auto_number__1"}, 
      {source: "progress_tracking__1", target: "progress_tracking__1"}, 
      {source: "item_id__1", target: "item_id__1"},
      {source: "connect_boards__1", target: "connect_boards__1"}, 
      {source: "mirror2__1", target: "mirror__1"}]
  ) {
    id
  }
}