People column expansion

You can now update the people column with an email address by sending a string with the column’s new value. Check out the code sample below!

mutation {
  change_simple_column_value(item_id: 123456789, board_id: 987654321, column_id: "person", value: "user@monday.com") {
    id
  }
}
2 Likes