I tried passing settings_str but the API is failing with Unknown argument "settings_str" on field "Mutation.create_column". error
Sample query:
mutation Create_column {
create_column(
board_id: "9999999999"
column_type: rating
title: "Postman 3H A1"
description: "This column is created from postman, should have 3 hearts."
settings_str: "{\"symbol\":\"hearts\",\"color\":\"#e2445c\"}"
) {
archived
description
title
type
id
settings_str
}
}
In newer API versions, settings_json might be required instead of settings_str.
Try this modified query:
mutation Create_column {
create_column(
board_id: "9999999999",
column_type: rating,
title: "Postman 3H A1",
description: "This column is created from Postman, should have 3 hearts.",
settings_json: "{\"symbol\":\"❤️\",\"color\":\"#e2445c\"}"
) {
archived
description
title
type
id
}
}
If that doesn’t work would using a dropdown or Status column instead and assign heart emojis (, , ) as labels work?