1👍
✅
In case of a query with filter on many-to-many field, entries can appear repetedly in the result. Just change to
queryset = Meal.objects.filter(ingridients__in=ingrid).distinct()
to remove multible entries with .distinct()
Source:stackexchange.com