I’m trying to update a record by its id in my Neutrinos SSD backend application. As per the documentation, when using the updateByID operation type in the Update node, there should be an id property available to map — but I’m not seeing this option in the node configuration.
I’m also attaching a screenshot for reference.
Am I missing a configuration step or doing something wrong?
Any guidance would be appreciated.
Hello @aniket ,
First, you need to define a data model and then add an entity corresponding to that model. You can find this option in the sidebar.
In this case, if the ID is not available in the properties section, you can go with the standard approach: receive the ID from the HTTP node and use the normal storage/database for the update operation.
I’ll check further, and if I find a useful way to handle updates directly with the data model, I’ll share the solution