Let’s say I have a list of songs, and I want to be able to search and filter the song list using multiple genres instead of just one genre. Is there a way to do that?
In this sample, I tried to make a many-to-many relationship of genres with the logged in user to hold the genres the user wants to search for but there’s no way to compare it with the songlist’s genres unless I make the user search a many-to-one relationship.
This filter makes it so that it displays all songs that fit with each individual genre. In this example searching Metal, Rock, and Punk displays all songs that contain at least one of these genres. I need the list to show only Song 3.
“Genres > Users > All > Contains > logged in user.”