Hi Team,
I am trying to add Column using Graph QL Query in my API
The Query is:
mutation { create_column( board_id: ${boardId}, title: "${column.title}", column_type: ${column.type} ) { id title } }
But, when I tried to add column with the below following type its give me error. And the type of columns has been fetched with the help of Graph QL query only.
Title: Checkbox, type: boolean
Title: monday Doc, type: doc
Title: Priority 1, type: color
Title: Timeline, type: timerange
Title: Label, type: color
Title: Numbers, type: numeric
Title: People, type: multiple-person
Title: Status, type: color
Title: Tags, type: tag
Title: Creation Date, type: pulse-log
Title: Ticket Number, type: pulse-id
Title: Project Phase, type: board-relation
Title: Client List, type: board-relation
Title: Task Time (Hr), type: lookup
Please provide me the solution for the same.