I have the following 3-tables:
Users
- [Text] Email
- [Relationship] UserHabits (1 User to N UserHabits)
UserHabits
- [Relationship] User (N UserHabits to 1 User)
- [Relationship] Habit (N UserHabits to 1 Habit)
Habits
- [Text] habbit_id
- [Relationship] UserHabits (1 Habits to N UserHabits)
I have a list displaying all ‘Habits’ records, but want to exclude any items the user has already selected. I.e., added to the ‘UserHabits’ table.
However, when I go to set the filter I get an endless loop of dropdowns and don’t have the option to select the relationship:
Any help would be really appreciated!
