Is there a simple way for QuerySet addition and subtraction in django?
- by Jonathan
Consider two QuerySet objects of the same class.
Is there a simple way to unify them into a single QuerySet, similar to addition but without duplicates.
Also, is there a simple way to subtract them? Removing all elements that appear in both sets from one of the sets?