Consider two QuerySet objects of the same class. Is there a simple way to unify them into a single QuerySet by calculating the union? Also, is there a simple way to subtract the
I think for operations as this you need to evalute them. So you can call list() on them and work on them with the common python list operations!
list()