Trying to do this:
wishList = WishList.objects.get(pk=20)
matches = [val for val in Store.attribute_answers.all() if val in wishList.attribute_answers]
And get this...
'ManyRelatedManager' object is not iterable
Both fields are many-to-many so how can this be done?