Hey! So I’m building a very simple app where I can populate a Calendar with events based on which collections are matched with the logged in User (See Image 1).
Once the app is opened, they are taken to a blank calendar. The button on the bottom left links to the screen that pulls their user data from an external database bubble via a user ID. This includes their email, ID, and true/false flags for whether they own a specified collection.
Then (for now), I create a Temp_User with these properties, which are pulled from my external database (bubble).
Now what I’m currently doing is updating the True/False flags on the Temp_User to match the data pulled from the database for that ID… but what I want to do is add the matching collection when associated property is True, and remove the matching collection when associated property is false. But when I try that I can’t add Relationships?
Ideally I would like to do this for the actual User profile that I signed up - but User account data was messier to manipulate with Actions, so for now I’m just doing it all with a Temp_User collection.
Any ideas how I can trigger an update to Temp_User’s (or User’s) Collection via the True/False property?