I have a many to many relationship between tags and restaurants. What I want to do is remove the association between the two given a list of tags.
For example, say restaurant.tags.all()
produces these tags: ['t1', 't2', 't3', 't4', 't5']
Is there a way I can do restaurants.tags.remove??(['t2','t4']) so that the results of restaurant.tags.all()
is now: ['t1', 't3', 't5'] ?