We’ve got a LINK type column in our board. The user is supposed to enter the TEXT, and we should find the URL based on the text. The text in this case is a Quote ID, the URL should link to our CRM system.
In the below example, the user enters “QUO07313”, and the URL should be updated accordingly. I’ve triggered from the “Update Any Column” event and then invoke a custom action. In that action, I cannot update the item (I’ve found many articles in the community about this, suggesting to use variables instead of a string - I’ve tried that as well). I don’t get an error back, but the response is the unmodified item data.
Could this be because this could cause a cascading trigger? (And is therefore prevented by Monday.com?) How could we still realise this? (Other then needing the user to enter the url himself…)
The GraphiQL query is: (it works fine when using Public GraphiQL - Hasura)
mutation {
change_column_value (board_id: 11111111, item_id: 22222222, column_id: “link”, value: "{"url":"https://url.web.com/index.php?module=Quotes&view=Detail&record=662840\\“,\\“text\\”:\\“QUO07313\\”}”) {
id
}
}
