Is there no difference between the following examples?
Query 1:
objects.filter(a=b).exclude(c=d).filter(e=f).exclude(g=h).distinct()
Query 2:
objects.filter(a=b).filter(e=f).exclude(c=d).exclude(g=h).distinct()
Is there no difference between the following examples?
Query 1:
objects.filter(a=b).exclude(c=d).filter(e=f).exclude(g=h).distinct()
Query 2:
objects.filter(a=b).filter(e=f).exclude(c=d).exclude(g=h).distinct()