I wish the following GQL command would work to move a subitem to a new parent item. Unfortunately, it gives a column not found error.
mutation {
change_simple_column_value(
board_id: 123456,
item_id: 654321,
column_id: "parent_item",
value: "192837"
) {
id
}
}