I need to perform a django query that checks if a field contains all values within a list. The list will be of varying length
Example
User.objects.filter(first_name__contains=['x','y','z'])
import operator from django.db.models import Q User.objects.filter(reduce(operator.and_, (Q(first_name__contains=x) for x in ['x', 'y', 'z'])))
for python 3
from functools import reduce
.
1.4m articles
1.4m replys
5 comments
57.0k users