is there a way to do a query and exclude a list of things instead of calling exclude multiple times?
|
|
|
|
|
|
|
Based on your reply to Ned, it sounds like you just want to exclude a list of tags. So you could just use the
Does that do what you want? |
||
|
|
|
What's wrong with calling exclude multiple times? Queries are lazy, nothing happens until you try to pull data from it, so there's no downside to using .exclude() more than once. |
||
|
|
|
You can do it pretty easily with the Q object:
You should also be able to do it dynamically with exclude():
|
||
|
|
