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?
alessandra
(Alessandra)
February 13, 2023, 9:18pm
2
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
alessandra
(Alessandra)
February 13, 2023, 9:20pm
3
@vishallimgire ,
Be sure to turn on Developer Mode to get column IDs:
If you’re not already a monday.com user, the first step is to sign up and create a trial account here. If you'd like to create an account strictly for developing apps, you can sign up for a developer account here: monday.com Developer Signup Once you...
1 Like