I am trying to get a queryset with unique instances of a model project. when I try to combine multiple querysets with & operator like
projects = (q1_projects & q2_projects & q3_projects)
I get this error
AssertionError: Cannot combine a unique query with a non-unique query.