I’ve been working for a while on supplementing the functionality of my app outside of bubble and had originally implemented a fairly convoluted set of upsert calls to my postgres db with data changes in bubble. I didn’t want to enable the data API because I have general concerns about the lack of flexibility with authentication.
I recently scrapped my old method and created a plugin that triggers with data changes, and if necessary:
- creates a new table in postgres
- creates new fields in the destination table if new fields have been created in bubble
- performs the upsert
right now it costs about 1 WU per item synced. I think with a little tweaking I could make it a public plugin, but I wanted to see if anyone else has this use case or if there’s any interest in this idea as a whole?