There’s no way in Bubble to modify a ‘thing’ independently of its existence in the database.

A ‘Thing’, by definition, is a database object, and any reference to it elsewhere is just that (i.e. a reference to the database object) - so making changes to a Thing ALWAYS updates the database.

If you really need to make changes locally then you’ll have to create a local version of it (using javascript), make change to that (using javascript) and then you can pass that into t backend workflow (as JSON) and update the Thing(s) there based on that.

(there may be some plugins to make that easier)

1 Like