Hello Bubblers,
Context
Let’s say I have to separate tables: User and Courses
Users can add their preferred courses to favorites.
For this reason I have a list-field “SavedCourses” of type Courses in the User’s table.
The linking of “User” and “Courses” enables me to translate the unique IDs of the saved courses into the names of the courses on the User’s favorite list in his dashboard.
What I want to do
The User shall now be able to delete courses from his favorite list (which shall delete the uniqueIDs in the SavedCourses list). I don’t want him to delete courses from the Courses table.
The Problem
This is where my problem starts. I can’t tell bubble to delete the chosen entry from the RG from the database. I guess the issue has something to do with the type of content set to “text” in the RG and the change to a thing of type “current user” in the workflow, but I tried hundred of different ways and could not do it. Any hint?