Hi all,
First of all, you have created an awesome product.
With regards to creating an object, I have a question wheter it is possible to invoke a custom function upon saving.
I know in Django, it is possible to overwrite the save method. But I was wondering how to achieve this in baserow, given the models are created dynamically.
(See e.g. Overriding the save method - Django Models - GeeksforGeeks)
In Django I use this for example to invoke a custom function, to translate adress to lat/lon and store these values.
It might also be, that I run a script and need to store the values in a different table (e.g. calculate a route with above values).
I was tinkering with baserow, and in the specific case of these lat/lon I can imagine a custom field or function could do the trick.
In essence, my question is what would be the best approach to invoke a custom function after saving an entry (and populate other fields, or even create an entry in an other table)?