How to update through graphql particular subitem row in that update data of specific coulmn or multiple column

Hi Team,
How to update through graphql api particular subitem row in that update data of specific coulmn


In my use case, I wanted to update a particular subitem by id to particular column “html template” endpoint. So how can I update some text data in that column to that particular subitem row by using the subitem id and column name. Is there graphql api avaialble for this?

Hi @vishallimgire,

Our API allows you to edit this subitem column. You can do this by using the column value change mutation (See the Columns Docs)

You’ll need a query like this, for example:

mutation {
    change_simple_column_value (board_id: 123456, item_id: 123456, column_id: "your_id", value: "your value") {
        id
    }
}

For the board_id and item_id, please click on your subitem and grab your IDs from the URL:

https://youraccount.monday.com/boards/123456/pulses/67890

Subitems have different board IDs from your monday board, and item IDs can be found after “pulses/”

1 Like

@vishallimgire,

Be sure to turn on Developer Mode to get column IDs:

1 Like