up vote 1 down vote favorite
share [g+] share [fb]

How do I pass a list of Qs to filter for OR lookups? Something like:

q_list = [Q(xyz__isnull=True), Q(x__startswith='x')]?

Without a list I would do:

Model.objects.filter(Q(xyz__isnull=True) | Q(x__startswith='x'))
link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

Use python's reduce() function:

import operator
reduced_q = reduce(operator.or_, q_list)
Model.objects.filter(reduced_q)
link|improve this answer
feedback

Q objects also have an add method which takes another Q object and a Q connector (either AND or OR).

q_object = Q(xyz__isnull=True)
q_object.add(Q(x__startswith='x'), Q.OR)

I've found this to be helpful when constructing OR filters and I've written a longer example on my blog: "Adding" Q objects in Django

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.