I see a few topics on this but they are closed to new replies. I would like to control the naming of columns in the subitem, so that I’m not dealing with the default ‘text’, ‘text5’, ‘text7’ in my query creation efforts. I can create columns in a parent item via the API and name it whatever I want using:
mutation{
create_column(board_id: 1234567, title:"Meaningful Column Name", description: "Test Column Creation", column_type:status) {
id
title
description
}
}
but when I substitute the board id for the subitem board, I get a 500 Internal server error in the API playground.
Is there a way to create subitem columns with meaningful ids?