Hey @Seda_Baskan
To perform update or delete operations, you just need to store a single id
in a variable when the corresponding button (update/delete) is clicked.
You can set the id
in a temporary state variable within Retool. Once stored, you can use this variable to reference the specific item you'd like to get, update, or delete.
- I save the
id
into a variable when the button is clicked - Then I trigger the appropriate query that uses this
id
And use that id from the variable of the retool :
And using that variable id you can get, update or delete data using the queries.
For example i use the get query :
Like i am using this like on the button i am saving the id into the variable and also trigger the query.